Mercurial > repos > iuc > sra_tools
diff sra_macros.xml @ 0:b723c120161a draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sra-tools commit d555f296be01d0c0fa5ac28d28a48cf4ada98297
author | iuc |
---|---|
date | Sun, 06 Dec 2015 09:04:37 -0500 |
parents | |
children | 462ee06c9358 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sra_macros.xml Sun Dec 06 09:04:37 2015 -0500 @@ -0,0 +1,52 @@ +<macros> + <macro name="requirements"> + <requirements> + <requirement type="package" version="1.1.3">ngs_sdk</requirement> + <requirement type="package" version="2.5.2">ncbi_vdb</requirement> + <requirement type="package" version="2.5.2">sra_toolkit</requirement> + <requirement type="package" version="5.18.1">perl</requirement> + </requirements> + </macro> + <macro name="input_conditional"> + <conditional name="input"> + <param name="input_select" type="select" label="select input type"> + <option value="accession_number">SRR accession</option> + <option value="file">SRA archive in current history</option> + </param> + <when value="accession_number"> + <param name="accession" type="text" label="SRR accession" help="Must start with SRR, e.g. SRR925743"/> + </when> + <when value="file"> + <param format="sra" name="file" type="data" label="sra archive"/> + </when> + </conditional> + </macro> + <macro name="alignments"> + <param name="alignments" type="select" value="both"> + <label>aligned or unaligned reads</label> + <option value="both">both</option> + <option value="aligned">aligned only</option> + <option value="unaligned">unaligned only</option> + </param> + </macro> + <macro name="minMapq"> + <param name="minMapq" type="integer" min="0" max="42" label="minimum mapping quality" optional="true"/> + </macro> + <macro name="region"> + <param format="text" name="region" type="text" label="aligned region" optional="true" + help="Filter by position on genome. Can be either accession.version (ex: NC_000001.10), chromosome name (ex:chr1 or 1) or 1-based coordinates (ex: chr1:1-101)."/> + </macro> + <macro name="matepairDist"> + <param name="matepairDist" type="text" label="mate-pair distance (from-to|unknown)" optional="true" + help="Filter by distance between matepairs. Use unknown to find matepairs split between the references. Use from-to (inclusive) to limit matepair distance on the same reference"/> + </macro> + <macro name="citation"> + <citations> + <citation type="doi">10.1093/nar/gkq1019</citation> + </citations> + </macro> + <token name="@SRATOOLS_ATTRRIBUTION@">Browse the NCBI SRA for SRR accessions at http://www.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=studies. + Galaxy tool wrapper originally written by Matt Shirley (mdshw5 at gmail.com). + Tool dependencies, clean-up and bug-fixes by Marius van den Beek (m.vandenbeek at gmail.com). + For support and bug reports contact Matt Shirley or Marius van den Beek or go to https://github.com/galaxyproject/tools-iuc.</token> +</macros>