diff --git a/config/organise_config/organise_runfolder.yml b/config/organise_config/organise_runfolder.yml new file mode 100644 index 0000000..78c1cb2 --- /dev/null +++ b/config/organise_config/organise_runfolder.yml @@ -0,0 +1,43 @@ +--- +#Input: runfolder_name + +#Currently named runfolderpath and runfolder to harmonize with rnaseq config by Monika, but for specific runfolder delivery, technically, these could be "merged" to one. +runfolderpath: /proj/ngi2016001/incoming +runfolder: / +organised: /Projects/ + +#current path is /proj/ngi2016001/incoming//Projects/// +#The following is based on that we are to keep the same directory structure as above. +files_to_organize: + + #The fastq files + - source: /Unaligned/* + destination: /(?P=projectid)//Sample_(?P=samplename)/ + options: + required: True + symlink: True + regexp: (?P[\w-]+)/Sample_(?P[\w-]+)/(?P=samplename)_S(?P\d+)_L(?P\d+)_R(?P\d)_001.fastq.gz + + #The MultiQC files + - source: /seqreports/project/* + destination: /(?P=projectid)// + options: + required: True + symlink: True + regexp: (?P[\w-]+)/(?P\w+)_(?P=projectid)_multiqc_report[\w.-]+ + + + +#what we are lacking, and what might need to be created outside the config is: +#1. checksums.md5 +#2. Encrypted samplesheet +#As far as I know, these don't exist prior to organization. + +# #hypothethical undetermined, needs an input of lane(s) connected to project +# #We will not include this at this point, as it requires additional input. Will maybe end up in its own config or something. +# - source: /Unaligned/Undetermined/Undetermined_S0_L_R_001.fastq.gz +# destination: /Unaligned//Undetermined/ +# options: +# required: False +# symlink: True +