Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse committed Sep 20, 2023
1 parent 0bf28e0 commit 90600fe
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 31 deletions.
54 changes: 27 additions & 27 deletions tests/test_annotation.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
- name: Run snpEff
command: nextflow run main.nf -profile test,docker --annotate_tools snpeff
tags:
- annotation
- snpeff
files:
- path: results/variant_annotation/GM12878/GM12878_snpEff.ann.vcf.gz
- path: results/variant_annotation/GM12878/GM12878_snpEff.ann.vcf.gz.tbi
- path: results/reports/multiqc_report.html
- name: Run VEP
command: nextflow run main.nf -profile test,docker --annotate_tools vep --skip_multiqc
tags:
- annotation
- vep
files:
- path: results/variant_annotation/GM12878/GM12878_VEP.ann.vcf.gz
- path: results/variant_annotation/GM12878/GM12878_VEP.ann.vcf.gz.tbi
- name: Run snpEff followed by VEP
command: nextflow run main.nf -profile test,docker --annotate_tools merge --skip_multiqc
tags:
- annotation
- merge
- snpeff
- vep
files:
- path: results/variant_annotation/GM12878/GM12878_snpEff_VEP.ann.vcf.gz
- path: results/variant_annotation/GM12878/GM12878_snpEff_VEP.ann.vcf.gz.tbi
# - name: Run snpEff
# command: nextflow run main.nf -profile test,docker --annotate_tools snpeff --outdir results
# tags:
# - annotation
# - snpeff
# files:
# - path: results/variant_annotation/GM12878/GM12878_snpEff.ann.vcf.gz
# - path: results/variant_annotation/GM12878/GM12878_snpEff.ann.vcf.gz.tbi
# - path: results/reports/multiqc_report.html
# - name: Run VEP
# command: nextflow run main.nf -profile test,docker --annotate_tools vep --skip_multiqc --outdir results
# tags:
# - annotation
# - vep
# files:
# - path: results/variant_annotation/GM12878/GM12878_VEP.ann.vcf.gz
# - path: results/variant_annotation/GM12878/GM12878_VEP.ann.vcf.gz.tbi
# - name: Run snpEff followed by VEP
# command: nextflow run main.nf -profile test,docker --annotate_tools merge --skip_multiqc --outdir results
# tags:
# - annotation
# - merge
# - snpeff
# - vep
# files:
# - path: results/variant_annotation/GM12878/GM12878_snpEff_VEP.ann.vcf.gz
# - path: results/variant_annotation/GM12878/GM12878_snpEff_VEP.ann.vcf.gz.tbi
2 changes: 1 addition & 1 deletion tests/test_bamcsiindex.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- name: Run pipeline with bam_csi_index for large genomes
command: nextflow run main.nf -profile test,docker --bam_csi_index
command: nextflow run main.nf -profile test,docker --bam_csi_index --outdir results
tags:
- bamcsiindex
files:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_default.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- name: Run default pipeline
command: nextflow run main.nf -profile test,docker
command: nextflow run main.nf -profile test,docker --outdir results
tags:
- default
- preprocessing
Expand Down
2 changes: 1 addition & 1 deletion tests/test_removeduplicates.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- name: Run pipeline with duplicate reads removed
command: nextflow run main.nf -profile test,docker --remove_duplicates true
command: nextflow run main.nf -profile test,docker --remove_duplicates true --outdir results
tags:
- removeduplicates
- preprocessing
Expand Down
2 changes: 1 addition & 1 deletion tests/test_skipbasecalib.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- name: Run pipeline without base calibration step
command: nextflow run main.nf -profile test,docker --skip_baserecalibration true
command: nextflow run main.nf -profile test,docker --skip_baserecalibration true --outdir results
tags:
- skipbasecalib
- preprocessing
Expand Down

0 comments on commit 90600fe

Please sign in to comment.