Skip to content

Commit

Permalink
Fix runfolder config
Browse files Browse the repository at this point in the history
  • Loading branch information
Aratz committed Sep 14, 2023
1 parent a08d129 commit f649b10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/organise_configs/runfolder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ variables:
# /proj/ngi2016001/incoming/<RUNFOLDER>/Projects/<PROJECT>/<RUNFOLDER>/ The
# following is based on that we are to keep the same directory structure as
# above.
files_to_organize:
files_to_organise:

# The fastq files
- source: "{runfolder}/Unaligned/*"
destination: "{organised}/{projectid}/{runfolder_name}/Sample_{samplename}/"
options:
required: true
link_type: softlink
regex: (?P<projectid>[\w-]+)/Sample_(?P<samplename>[\w-]+)/(?P=samplename)_S(?P<samplenumber>\d+)_L(?P<lanes>\d+)_R(?P<read>\d)_001.fastq.gz # yamllint disable-line
filter: (?P<projectid>[\w-]+)/Sample_(?P<samplename>[\w-]+)/(?P=samplename)_S(?P<samplenumber>\d+)_L(?P<lanes>\d+)_R(?P<read>\d)_001.fastq.gz # yamllint disable-line

# The MultiQC files
- source: "{runfolder}/seqreports/project/*"
destination: "{organised}/{projectid}/<runfolder_name>/"
options:
required: true
link_type: softlink
regexp: (?P<projectid>[\w-]+)/\w+_(?P=projectid)_multiqc_report[\w.-]+
filter: (?P<projectid>[\w-]+)/\w+_(?P=projectid)_multiqc_report[\w.-]+

# what we are lacking, and what might need to be created outside the config is:
# 1. checksums.md5
Expand Down

0 comments on commit f649b10

Please sign in to comment.