Skip to content

Commit

Permalink
Reduce size filter to 50
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung authored Sep 11, 2024
1 parent 1b0b2e9 commit 40d104f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subworkflows/cecret.nf
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ workflow cecret {
}

if ( params.trimmer == 'ivar' ) {
ivar_trim(ch_bam.filter{ it -> it[1].size() > 500 }.map{it -> tuple( it[0], it[1])}.combine(ch_primer_bed))
ivar_trim(ch_bam.filter{ it -> it[1].size() > 50 }.map{it -> tuple( it[0], it[1])}.combine(ch_primer_bed))

ch_trim_bam = ivar_trim.out.bam_bai
ch_for_version = ch_for_version.mix(ivar_trim.out.trimmer_version)
Expand Down

0 comments on commit 40d104f

Please sign in to comment.