Skip to content

Commit

Permalink
remove filtering from nanoplot
Browse files Browse the repository at this point in the history
  • Loading branch information
replikation authored Mar 5, 2021
1 parent f948a1f commit a02faa3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions workflows/process/nanoplot.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ process nanoplot {
tuple val(name), path("${name}_read_quality.txt"), path("*.png") optional true
script:
"""
find . -name "${reads}" -type 'f' -size -1500k -delete
NanoPlot -t ${task.cpus} --fastq ${reads} --title '${name}' --color darkslategrey --N50 --plots hex --loglength -f png --store
NanoPlot -t ${task.cpus} --pickle NanoPlot-data.pickle --title '${name}' --color darkslategrey --N50 --plots hex --loglength -f pdf
mv NanoPlot-report.html ${name}_read_quality_report.html
Expand All @@ -24,4 +22,4 @@ process nanoplot {
/* Comments:
We run nanoplot 2 times to get png and pdf files.
The second time its done via the pickle file of the previous run, to save computing time
*/
*/

0 comments on commit a02faa3

Please sign in to comment.