Kurt-Hetrick / CIDR_WES

CIDR's production pipeline for WES and other targeted DNA sequencing projects.
0 stars 0 forks source link

if input date is already ISO8601 then keep as is #106

Closed Kurt-Hetrick closed 4 years ago

Kurt-Hetrick commented 4 years ago

this use to work until the cidr lims changed how they utilized date (neither of which is ISO8601), so now I have a conditional in there to detect either cidr date format and convert to ISO8601...which means if the input date is already ISO8601, then things go boom...so now I have be able to create a 3rd conditional for if ISO8601 then keep that way.

Kurt-Hetrick commented 4 years ago

i might punt on this. ISO8601 has time stamp at end of cidr date...so I could just manually remove the time stamp from the date and then let things go...which I'll probably do in the interest of time although I would like to retain the original time stamps...in the event that I decide to implement this down the road, it looks like regexes would be they way to go.

Kurt-Hetrick commented 4 years ago

punt