Skip to content

Commit

Permalink
Reduce output to only the cluster stats file
Browse files Browse the repository at this point in the history
  • Loading branch information
AmstlerStephan committed Jul 25, 2024
1 parent 7135f82 commit 8392a21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions lib/processes/cluster.nf
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
consensus_fasta="consensus.fasta"
detected_umis_file_name="detected_umis.fastq"
process CLUSTER {
publishDir "${params.output}/${sample.baseName}/clustering/${type}", pattern: "cluster*", mode: 'copy'

input:
path sample
val ( type )
Expand Down
6 changes: 3 additions & 3 deletions lib/processes/reformat_filter_cluster.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ process REFORMAT_FILTER_CLUSTER {
path umi_parse_clusters_python

output:
tuple val( "${sample}" ), val( "${target}" ), path( "smolecule*"), optional: true, emit: smolecule_cluster_fastqs
tuple val( sample ), val ( target ), path( "*.tsv" ), optional: true
tuple val( "${sample}" ), val( "${target}" ), path( "cluster*"), optional: true
tuple val( "${sample}" ), path( "smolecule*"), optional: true, emit: smolecule_cluster_fastqs
tuple val( "${sample}" ), path( "*.tsv" ), optional: true
tuple val( "${sample}" ), path( "cluster*"), optional: true

script:
def balance_strands = params.balance_strands ? "--balance_strands" : ""
Expand Down

0 comments on commit 8392a21

Please sign in to comment.