File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 9
9
10
10
test :
11
11
nextflow main.nf -profile test,conda --output output/test1
12
- nextflow main.nf -profile test,conda --skip_bqsr --output output/test2
13
- nextflow main.nf -profile test,conda --skip_realignment --output output/test3
14
- nextflow main.nf -profile test,conda --skip_deduplication --output output/test4
15
- nextflow main.nf -profile test,conda --output output/test5 --skip_metrics
12
+ # nextflow main.nf -profile test,conda --skip_bqsr --output output/test2
13
+ # nextflow main.nf -profile test,conda --skip_realignment --output output/test3
14
+ # nextflow main.nf -profile test,conda --skip_deduplication --output output/test4
15
+ # nextflow main.nf -profile test,conda --output output/test5 --skip_metrics
16
16
nextflow main.nf -profile test,conda --output output/test6 --intervals false
17
17
nextflow main.nf -profile test,conda --output output/test7 --hs_metrics_target_coverage target_coverage.txt --hs_metrics_per_base_coverage per_base_coverage.txt
18
- nextflow main.nf -profile test,conda --output output/test8 --hs_metrics_target_coverage target_coverage.txt --hs_metrics_per_base_coverage per_base_coverage.txt --collect_hs_metrics_min_base_quality 10 --collect_hs_metrics_min_mapping_quality 10
18
+ # nextflow main.nf -profile test,conda --output output/test8 --hs_metrics_target_coverage target_coverage.txt --hs_metrics_per_base_coverage per_base_coverage.txt --collect_hs_metrics_min_base_quality 10 --collect_hs_metrics_min_mapping_quality 10
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ This can be built from a BED file using Picard's BedToIntervalList (https://gatk
45
45
## How to run it
46
46
47
47
```
48
- $ nextflow run tron-bioinformatics/tronflow-bam-preprocessing -r v1.2.0 --help
48
+ $ nextflow run tron-bioinformatics/tronflow-bam-preprocessing -r v1.2.1 --help
49
49
N E X T F L O W ~ version 19.07.0
50
50
Launching `main.nf` [intergalactic_shannon] - revision: e707c77d7b
51
51
Original file line number Diff line number Diff line change @@ -41,11 +41,13 @@ if (params.help) {
41
41
}
42
42
43
43
if (! params. reference) {
44
- exit -1 , " --reference is required"
44
+ log. error " --reference is required"
45
+ exit 1
45
46
}
46
47
47
48
if (! params. skip_bqsr && ! params. dbsnp) {
48
- exit -1 , " --dbsnp is required to perform BQSR"
49
+ log. error " --dbsnp is required to perform BQSR"
50
+ exit 1
49
51
}
50
52
51
53
if (params. output) {
Original file line number Diff line number Diff line change 55
55
// file = "${params.output}/pipeline_dag.svg"
56
56
}
57
57
58
- VERSION = ' 1.2.0 '
58
+ VERSION = ' 1.2.1 '
59
59
DOI = ' https://zenodo.org/badge/latestdoi/358400957'
60
60
61
61
manifest {
You can’t perform that action at this time.
0 commit comments