I have a query in Labkey as follows:
SELECT MS2SearchRuns.Name AS DatasetName,
MS2SearchRuns.MS2Details.PeptideCount AS PeptideCount,
MS2SearchRuns.MS2Details.Created
FROM MS2SearchRuns
which returns a Date field as the last item. If I use labkey.selectRows in Rlabkey to retrieve this data in R, I get an error message with the new R version (2.11.1):
Error in strptime(x, format, tz = "GMT") :
use of %Z for input is not supported
It used to work fine with the older version of R (I had a 2.10.x before). I noticed that R has changed strptime starting 2.11.0. Any ideas?
Thanks,
-Ashoka |