File tree Expand file tree Collapse file tree 6 files changed +9
-3
lines changed Expand file tree Collapse file tree 6 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ Changelog
7676========= ====================================================================
7777Version Description
7878========= ====================================================================
79+ 0.8.13 * add the thread option in minimap2 case
79800.8.12 * factorise multiqc rule
80810.8.11 * Implemente the --from-project option and new framework
8182 * custom HTMrLl report
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ bwa_mem_mapping:
2929
3030minimap2 :
3131 options : ' '
32+ threads : 4
3233
3334bowtie2_mapping_ref :
3435 options :
Original file line number Diff line number Diff line change @@ -80,12 +80,13 @@ elif config['general']['mapper'] == "minimap2":
8080 rule minimap2:
8181 input: __data__input
8282 output: __minimap2__output
83+ threads: config["minimap2"]["threads"]
8384 params:
8485 reference=config['general']['reference_file'],
8586 options=config['minimap2']['options']
8687 shell:
8788 """
88- minimap2 {params.reference} {input} {params.options} -a | samtools view -b | bamtools sort -in - -out {output}
89+ minimap2 -t {threads} {params.reference} {input} {params.options} -a | samtools view -b | bamtools sort -in - -out {output}
8990 """
9091 __bamtools_stats__input = __minimap2__output
9192elif config['general']['mapper'] == "bowtie2":
Original file line number Diff line number Diff line change @@ -131,6 +131,6 @@ table_columns_visible:
131131 FastQC :
132132 percent_fails : False
133133 total_sequences : True
134- percent_duplicates : False
134+ percent_duplicates : True
135135 percent_gc : True
136136 avg_sequence_length : True
Original file line number Diff line number Diff line change @@ -51,6 +51,9 @@ mapping:
5151 mapping :
5252 " options " :
5353 type : str
54+ " threads " :
55+ type : int
56+ range : { min: 1 }
5457
5558 " sequana_coverage " :
5659 type : map
Original file line number Diff line number Diff line change 77
88_MAJOR = 0
99_MINOR = 8
10- _MICRO = 12
10+ _MICRO = 13
1111version = '%d.%d.%d' % (_MAJOR , _MINOR , _MICRO )
1212release = '%d.%d' % (_MAJOR , _MINOR )
1313
You can’t perform that action at this time.
0 commit comments