Skip to content

Commit

Permalink
fix pacbio input type in qc process
Browse files Browse the repository at this point in the history
  • Loading branch information
hoelzer committed Dec 9, 2024
1 parent e13151b commit b89c99a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflows/qc_wf.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ workflow qc {
if ( input_type == 'fasta' ){
quast(input)
report = quast.out.report_tsv
} else if ( input_type == 'nano' ) {
} else if ( input_type == 'nano' || input_type == 'pacbio' ) {
nanoplot(input)
format_nanoplot_report(nanoplot.out.html)
report = format_nanoplot_report.out
Expand Down

0 comments on commit b89c99a

Please sign in to comment.