Skip to content

Commit

Permalink
Merge pull request #215 from luslab/dev
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
chris-cheshire authored Oct 23, 2023
2 parents 113c864 + bae0b92 commit 1798764
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions workflows/cutandrun.nf
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,8 @@ workflow CUTANDRUN {
ch_samtools_bam,
ch_samtools_bai,
params.dedup_target_reads,
PREPARE_GENOME.out.fasta,
PREPARE_GENOME.out.fasta_index
PREPARE_GENOME.out.fasta.collect(),
PREPARE_GENOME.out.fasta_index.collect()
)
ch_samtools_bam = DEDUPLICATE_PICARD.out.bam
ch_samtools_bai = DEDUPLICATE_PICARD.out.bai
Expand Down Expand Up @@ -418,8 +418,8 @@ workflow CUTANDRUN {
DEDUPLICATE_LINEAR (
ch_samtools_bam,
ch_samtools_bai,
PREPARE_GENOME.out.fasta,
PREPARE_GENOME.out.fasta_index,
PREPARE_GENOME.out.fasta.collect(),
PREPARE_GENOME.out.fasta_index.collect(),
params.dedup_target_reads,
ch_linear_duplication_header_multiqc
)
Expand Down

0 comments on commit 1798764

Please sign in to comment.