Skip to content

Commit

Permalink
outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
kubranarci committed Jun 24, 2024
1 parent 7187c57 commit d456009
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,4 @@ jobs:
if [[ $NXF_VER = '' ]]; then sleep 1200; fi
- name: BASIC Run the basic pipeline with docker
run: |
nextflow run ${GITHUB_WORKSPACE} -profile test,docker
- name: BASIC Run the basic pipeline when --runcontig set to "ALT_HLA" (contigs does not exist in bam)
run: |
nextflow run ${GITHUB_WORKSPACE} -profile test,docker --runcontigs "ALT_HLA"
nextflow run ${GITHUB_WORKSPACE} -profile test,docker
10 changes: 2 additions & 8 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ process {
mode: params.publish_dir_mode
]
}
withName: FILE_CONCATENATOR {
withName: SORT_NONSTANDARD_VCF {
publishDir = [
path: {"${params.outdir}/${meta.id}"},
pattern: "*{.vcf.gz,vcf.gz.tbi}",
Expand Down Expand Up @@ -175,12 +175,6 @@ process {
]
]
}
withName: 'CONVERT_TO_VCF' {
publishDir = [
path: { "${params.outdir}/test" },
enabled: false
]
}
withName: 'BCFTOOLS_SORT' {
publishDir = [
path: { "${params.outdir}/${meta.id}/standard_vcf/" },
Expand All @@ -199,7 +193,7 @@ process {
// Don't publish results for these processes
//
process {
withName: 'GREP_SAMPLENAME|ANNOVAR|MUTATION_DISTANCE|CONTEXT_FREQUENCIES|ANNOTATE_VCF|FILTER_BY_CRIT|SNV_RELIABILITY_PIPE|DBSNP_COUNTER|FLAG_BIAS|CONFIDENCE_ANNOTATION' {
withName: 'GREP_SAMPLENAME|ANNOVAR|MUTATION_DISTANCE|CONTEXT_FREQUENCIES|ANNOTATE_VCF|FILTER_BY_CRIT|SNV_RELIABILITY_PIPE|DBSNP_COUNTER|FLAG_BIAS|CONFIDENCE_ANNOTATION|CONVERT_TO_VCF|FILE_CONCATENATOR' {
publishDir = [
path: { "${params.outdir}/test" },
enabled: false
Expand Down

0 comments on commit d456009

Please sign in to comment.