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
trim script expects a specific fastq naming convention that makes it incompatible with sequence data from Ramaciotti centre. To customise, will need to edit basename variable definition (see lines 80-83):
For example, to accept fqs ending in _R1/2_001.fastq.gz:
basename=$(basename "$fastq" | sed -E 's/_[R][12]_001\.fastq\.gz$//')
paired_extension="${fastq#*.}"
uniq_basename="${basename}"
which_pair=$(basename "$fastq" | sed -E 's/^.*_([R][12])_001\.fastq\.gz$/\1/')
The text was updated successfully, but these errors were encountered:
trim script expects a specific fastq naming convention that makes it incompatible with sequence data from Ramaciotti centre. To customise, will need to edit basename variable definition (see lines 80-83):
For example, to accept fqs ending in _R1/2_001.fastq.gz:
The text was updated successfully, but these errors were encountered: