Skip to content

Commit

Permalink
Remove all outputs to reduce needed disk storage
Browse files Browse the repository at this point in the history
  • Loading branch information
AmstlerStephan committed Jul 25, 2024
1 parent 105308d commit a1a7097
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions lib/processes/cluster.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ consensus_fasta="consensus.fasta"
vsearch_dir="vsearch_clusters"

process CLUSTER {
publishDir "${params.output}/${sample}/clustering/${type}", pattern: "${consensus_fasta}", mode: 'copy'
publishDir "${params.output}/${sample}/clustering/${type}", pattern: "cluster*", mode: 'copy'

input:
tuple val( sample ), val( target ), path( detected_umis_fastq )
Expand Down
1 change: 0 additions & 1 deletion lib/processes/map_reads.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
process MAP_READS {
publishDir "${params.output}/${sample}/align/${type}", mode: 'copy'

input:
tuple val( sample ), val( target ), path( consensus_fastq )
Expand Down
1 change: 0 additions & 1 deletion lib/processes/reformat_filter_cluster.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
process REFORMAT_FILTER_CLUSTER {
tag "${sample}"
publishDir "${params.output}/${sample}/clustering/${type}/smolecule", pattern: "smolecule*", mode: 'copy'
publishDir "${params.output}/${sample}/stats/${type}", pattern: "*tsv", mode: 'copy'

input:
Expand Down
1 change: 0 additions & 1 deletion lib/processes/split_reads.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
process SPLIT_READS {
publishDir "${params.output}/${sample}/stats/${type}", mode: 'copy', pattern: "*.tsv"
publishDir "${params.output}/${sample}/${params.output_format}_filtered/${type}", mode: 'copy', pattern: "*${params.output_format}"

input:
tuple val( sample ), val( target ), path ( bam ) , path ( bam_bai )
Expand Down

0 comments on commit a1a7097

Please sign in to comment.