Mercurial > repos > youyuh48 > nanoplot
comparison NanoPlot.xml @ 0:52095f4e027b draft default tip
planemo upload for repository https://github.com/youyuh48/galaxy-tools/tree/master/tools/NanoPlot
author | youyuh48 |
---|---|
date | Wed, 29 Aug 2018 22:51:00 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:52095f4e027b |
---|---|
1 <tool id="NanoPlot" name="NanoPlot" version="0.1.0"> | |
2 <description>Plotting scripts for long read sequencing data</description> | |
3 <requirements> | |
4 <requirement type="package" version="1.13.0">nanoplot</requirement> | |
5 </requirements> | |
6 <command detect_errors="exit_code"> | |
7 <![CDATA[ | |
8 NanoPlot | |
9 $barcoded | |
10 --summary "$input" | |
11 -o report | |
12 -t \${GALAXY_SLOTS:-1} | |
13 | |
14 && mv report/NanoPlot-report.html output.html | |
15 ]]> | |
16 </command> | |
17 <inputs> | |
18 <param name="input" type="data" format="txt" label="Albacore's summary file"/> | |
19 <param name="barcoded" type="boolean" label="barcoded" truevalue="--barcoded" falsevalue="" help="Use if you want to split the summary file by barcode"/> | |
20 </inputs> | |
21 <outputs> | |
22 <data format="html" name="output" from_work_dir="output.html" label="${tool.name} on ${on_string}"/> | |
23 </outputs> | |
24 <tests> | |
25 <test> | |
26 <param name="input" value="sequencing_summary.txt"/> | |
27 <output name="output" file="NanoPlot-report.html" ftype="html"/> | |
28 </test> | |
29 </tests> | |
30 <help> | |
31 <![CDATA[ | |
32 usage: NanoPlot [-h] [-v] [-t THREADS] [--verbose] [--store] [--raw] [-o OUTDIR] [-p PREFIX] [--maxlength N] | |
33 [--minlength N] [--drop_outliers] [--downsample N] [--loglength] [--percentqual] [--alength] | |
34 [--minqual N] [--readtype {1D,2D,1D2}] [--barcoded] [-c COLOR] | |
35 [-f {eps,jpeg,jpg,pdf,pgf,png,ps,raw,rgba,svg,svgz,tif,tiff}] | |
36 [--plots [{kde,hex,dot,pauvre} [{kde,hex,dot,pauvre} ...]]] [--listcolors] [--no-N50] [--N50] | |
37 [--title TITLE] | |
38 (--fastq file [file ...] | --fasta file [file ...] | --fastq_rich file [file ...] | --fastq_minimal file [file ...] | --summary file [file ...] | --bam file [file ...] | --cram file [file ...] | --pickle pickle) | |
39 ]]> | |
40 </help> | |
41 <citations> | |
42 <citation type="doi">10.1093/bioinformatics/bty149</citation> | |
43 </citations> | |
44 </tool> |