You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sharing issue arising from troubleshooting with @jeanzzhao
tl;dr: Grist initial read processing is (silently) incorrect for samples that use .1 or .2 in read names (we assume this is used for paired end information). I'm not sure what issues arise downstream of the incorrect processing (if any) -- will update as we assess.
In rule download_sra_wc, grist attempts to standardize read names to the /1 and /2 expected/required by many programs:
This is not ideal replacement code however, since it doesn't handle cases where /1,/2 already exist, and doesn't substitute .1/.2 if they are used for specifying pair information.
I'm not sure what issues arise downstream of the incorrect processing (if any) -- will update as we assess.
The text was updated successfully, but these errors were encountered:
sharing issue arising from troubleshooting with @jeanzzhao
tl;dr: Grist initial read processing is (silently) incorrect for samples that use
.1
or.2
in read names (we assume this is used for paired end information). I'm not sure what issues arise downstream of the incorrect processing (if any) -- will update as we assess.In
rule download_sra_wc
, grist attempts to standardize read names to the/1
and/2
expected/required by many programs:However, read names in some files may contain
.1
or.2
as part of the name, e.g. raw reads fromERR257715_1.fastq
:Grist processing by the code above yields this result:
I've reprocessed the files for this sample by just adding
/1
or/2
rather than substituting for.1/.2
which produces the following for the
_1
file:This is not ideal replacement code however, since it doesn't handle cases where
/1
,/2
already exist, and doesn't substitute.1
/.2
if they are used for specifying pair information.I'm not sure what issues arise downstream of the incorrect processing (if any) -- will update as we assess.
The text was updated successfully, but these errors were encountered: