Skip to content

Commit

Permalink
Make uncompressed BED intermediate
Browse files Browse the repository at this point in the history
  • Loading branch information
yashpatel6 committed Mar 29, 2024
1 parent 8270b3e commit ad3ac31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,6 @@ workflow {
.map{ it -> [params.sample_id, it] }
)

checksum_ch = checksum_ch.mix(merge_bedfiles_BEDtools.out.bed.flatten())
checksum_ch = checksum_ch.mix(compress_index_BED.out.index_out.map{ it -> [it[1], it[2]]})
}

Expand Down
5 changes: 3 additions & 2 deletions module/merge_bedfiles_bedtools.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ include { generate_standard_filename } from '../external/pipeline-Nextflow-modul
process merge_bedfiles_BEDtools {
container params.docker_image_bedtools

publishDir path: "${params.workflow_output_dir}/output/",
publishDir path: "${params.workflow_output_dir}/intermediate/${task.process.replace(':','/')}",
pattern: "*.bed",
mode: "copy"
mode: "copy",
enabled: params.save_intermediate_files

publishDir path: "${params.log_output_dir}/process-log/",
pattern: ".command.*",
Expand Down
3 changes: 0 additions & 3 deletions nftest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ cases:
- actual: calculate-targeted-coverage-*/TWGSAMIN000001-T002-S02-F/SAMtools-*/output/BEDtools-*_TWGSAMIN000001_TWGSAMIN000001-T002-S02-F_off-target-dbSNP-depth-per-base.bed
expect: /hot/software/pipeline/pipeline-calculate-targeted-coverage/Nextflow/development/output/TWGSAMIN000001-T002-S02-F.off-target-dbSNP_depth-per-base.bed
method: md5
- actual: calculate-targeted-coverage-*/TWGSAMIN000001-T002-S02-F/SAMtools-*/output/BEDtools-*_TWGSAMIN000001_TWGSAMIN000001-T002-S02-F_target-with-enriched-off-target-intervals.bed
expect: /hot/software/pipeline/pipeline-calculate-targeted-coverage/Nextflow/development/output/TWGSAMIN000001-T002-S02-F.target_with_enriched_off-target_intervals.bed
method: md5
- actual: calculate-targeted-coverage-*/TWGSAMIN000001-T002-S02-F/SAMtools-*/output/BEDtools-*_TWGSAMIN000001_TWGSAMIN000001-T002-S02-F_target-with-enriched-off-target-intervals.bed.gz
expect: /hot/software/pipeline/pipeline-calculate-targeted-coverage/Nextflow/development/output/TWGSAMIN000001-T002-S02-F.target_with_enriched_off-target_intervals.bed.gz
method: md5

0 comments on commit ad3ac31

Please sign in to comment.