diff --git a/README.md b/README.md index baac98c34cb2787fccd3f700a234b0e45bb3785f..4069cb954f83dfaa8b10221c642aa8f293e02b69 100755 --- a/README.md +++ b/README.md @@ -198,6 +198,11 @@ Gitlab developers ## WHAT'S NEW IN +### v7.2.0 + +1) better priority for slurm + + ### v7.1.0 1) dev/test.config adapted to slurm diff --git a/dataset/test.fastq2_bowtie2_mini.cov b/dataset/test.fastq2_bowtie2_mini.cov old mode 100644 new mode 100755 diff --git a/dataset/test.fastq2_q20_mini.cov b/dataset/test.fastq2_q20_mini.cov old mode 100644 new mode 100755 diff --git a/dataset/test.fastq2_q20_nodup_mini.cov b/dataset/test.fastq2_q20_nodup_mini.cov old mode 100644 new mode 100755 diff --git a/dev/test.config b/dev/test.config index 4dd054e350a5e500214bca25a27f2e6480e6033c..88bfc44822d5b34d0275724ef655590c7ff7fc50 100755 --- a/dev/test.config +++ b/dev/test.config @@ -75,11 +75,11 @@ result_folder_name="20220120_res_CL14985_test" //// end general variables //// slurm variables -fastqueue = 'hubbioit' // fast for -p option of slurm. Example: fastqueue = 'common,dedicated'. Example: fastqueue = 'hubbioit' +fastqueue = 'common,dedicated' // fast for -p option of slurm. Example: fastqueue = 'common,dedicated'. Example: fastqueue = 'hubbioit' fastqos= '--qos=fast' // fast for --qos option of slurm. Example: fastqos= '--qos=fast' -normalqueue = 'hubbioit' // normal for -p option of slurm. Example: normalqueue = 'bioevo' +normalqueue = 'common,dedicated' // normal for -p option of slurm. Example: normalqueue = 'bioevo' normalqos = '--qos=hubbioit' // normal for --qos option of slurm. Example: normalqos = '--qos=dedicated' -longqueue = 'hubbioit' // slow for -p option of slurm. Example: longqueue = 'bioevo' +longqueue = 'common,dedicated' // slow for -p option of slurm. Example: longqueue = 'bioevo' longqos = '--qos=hubbioit' // slow for --qos option of slurm. Example: longqos = '--qos=dedicated' add_options = ' ' // additional option of slurm. Example: addoptions = '--exclude=maestro-1101,maestro-1034' or add_options = ' ' //// end slurm variables diff --git a/nextflow.config b/nextflow.config index 76191b264315bac9182cc14c7be3eca03a23d851..07f2f5ef7c3b2ca8b1a3d27927ada0e07bd5a3ea 100755 --- a/nextflow.config +++ b/nextflow.config @@ -76,11 +76,11 @@ result_folder_name="20220120_res_CL14985_test" //// end general variables //// slurm variables -fastqueue = 'hubbioit' // fast for -p option of slurm. Example: fastqueue = 'common,dedicated'. Example: fastqueue = 'hubbioit' +fastqueue = 'common,dedicated' // fast for -p option of slurm. Example: fastqueue = 'common,dedicated'. Example: fastqueue = 'hubbioit' fastqos= '--qos=fast' // fast for --qos option of slurm. Example: fastqos= '--qos=fast' -normalqueue = 'hubbioit' // normal for -p option of slurm. Example: normalqueue = 'bioevo' +normalqueue = 'common,dedicated' // normal for -p option of slurm. Example: normalqueue = 'bioevo' normalqos = '--qos=hubbioit' // normal for --qos option of slurm. Example: normalqos = '--qos=dedicated' -longqueue = 'hubbioit' // slow for -p option of slurm. Example: longqueue = 'bioevo' +longqueue = 'common,dedicated' // slow for -p option of slurm. Example: longqueue = 'bioevo' longqos = '--qos=hubbioit' // slow for --qos option of slurm. Example: longqos = '--qos=dedicated' add_options = ' ' // additional option of slurm. Example: addoptions = '--exclude=maestro-1101,maestro-1034' or add_options = ' ' //// end slurm variables