Mercurial > repos > iuc > jbrowse
comparison jbrowse.xml @ 0:2c9e5136b416 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
author | iuc |
---|---|
date | Mon, 04 May 2015 17:21:38 -0400 |
parents | |
children | 497c6bb3b717 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:2c9e5136b416 |
---|---|
1 <tool id="jbrowse" name="JBrowse" version="0.1"> | |
2 <description>genome browser</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements"/> | |
7 <expand macro="stdio"/> | |
8 <version_command>python jbrowse.py --version</version_command> | |
9 <command interpreter="python"><![CDATA[jbrowse.py | |
10 $positional_1 | |
11 | |
12 #set data_files = '" "'.join([ str($var.gff3) for $var in $data_tracks ]) | |
13 #set data_formats = '" "'.join([ str($var.gff3.ext) for $var in $data_tracks ]) | |
14 #set data_labels = '" "'.join([ str($var.gff3_label) for $var in $data_tracks ]) | |
15 | |
16 --gff3 "$data_files" | |
17 --gff3_format "$data_formats" | |
18 --gff3_label "$data_labels" | |
19 | |
20 | |
21 --jbrowse \${JBROWSE_SOURCE_DIR} | |
22 --outdir $default.files_path | |
23 > $default]]></command> | |
24 <inputs> | |
25 <param label="Genome" name="positional_1" type="data" format="fasta"/> | |
26 <repeat name="data_tracks" title="Annotation Track"> | |
27 <param label="Annotation Data" help="in GFF, GFF3, or BED formats" | |
28 format="gff,gff3,bed" name="gff3" type="data"/> | |
29 <param label="Dataset Label" name="gff3_label" type="text"/> | |
30 </repeat> | |
31 </inputs> | |
32 <outputs> | |
33 <data format="html" name="default" label="JBrowse on $positional_1.name"/> | |
34 </outputs> | |
35 <help><![CDATA[ | |
36 Deploy a static JBrowse visualization of a genome and some associated datasets | |
37 | |
38 @ATTRIBUTION@ | |
39 ]]></help> | |
40 <citations> | |
41 <citation type="doi">10.1101/gr.094607.109</citation> | |
42 </citations> | |
43 </tool> | |
44 |