comparison feature_load_gff.xml @ 0:04f12e56d4c7 draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 81a83f06b49db32928ba0cd44e5b6d0431868d27
author gga
date Thu, 21 Jun 2018 08:45:47 -0400
parents
children 3a36c33f7a49
comparison
equal deleted inserted replaced
-1:000000000000 0:04f12e56d4c7
1 <?xml version="1.0"?>
2 <tool id="feature_load_gff" name="Chado load gff" version="@WRAPPER_VERSION@.0">
3 <description></description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <code file="chado.py"/>
8 <expand macro="requirements"/>
9 <command detect_errors="aggressive"><![CDATA[
10 @AUTH@
11
12 chakin feature load_gff
13 '$gff'
14 '$analysis_id'
15 '$organism'
16
17 #if $landmark_type:
18 --landmark_type '$landmark_type'
19 #end if
20 #if $re_protein:
21 --re_protein '$re_protein'
22 #end if
23 #if $re_protein_capture:
24 --re_protein_capture '$re_protein_capture'
25 #end if
26 #if $fasta:
27 --fasta '$fasta'
28 #end if
29 #if $no_seq_compute:
30 $no_seq_compute
31 #end if
32 #if $add_only:
33 $add_only
34 #end if
35
36 --quiet
37
38 > $results
39 ]]></command>
40 <inputs>
41 <!-- arguments -->
42 <param name="gff" label="Gff" argument="gff" type="data" format="gff" help="Path to the Fasta file to load" />
43 <param argument="--analysis_id"
44 type="select"
45 dynamic_options="list_analyses()"
46 label="Analysis" />
47 <param argument="--organism"
48 type="select"
49 dynamic_options="list_organisms()"
50 label="Organism" />
51
52 <!-- options -->
53 <param name="landmark_type" label="Landmark Type" argument="landmark_type" type="text" help="Type of the landmarks (will speed up loading if provided, e.g. contig, should be a term of the Sequence ontology)" />
54 <param name="re_protein_capture" label="Regex protein capture" argument="re_protein_capture" type="text" help="Regular expression to capture groups in mRNA name to use in 'Regex protein' (e.g. '^(.*?)-R([A-Z]+)$', default='^(.*?)$' )" />
55 <param name="re_protein" label="Regex protein" argument="re_protein" type="text" help="Replacement string for the protein name using capturing groups defined in 'Regex protein capture'" />
56 <param name="fasta" label="Fasta" argument="fasta" type="data" format="fasta" help="A Fasta containing sequences for some features. When creating a feature, if its sequence is in this fasta file it will be loaded. Otherwise for mRNA and polypeptides it will be computed from the genome sequence (if available), otherwise it will be left empty." optional="true" />
57 <param name="no_seq_compute" label="Allow computing missing sequences" argument="no_seq_compute" type="boolean" truevalue="" falsevalue="--no_seq_compute" help="Enable the computation of mRNA and polypeptides sequences based on genome sequence and positions." />
58 <param name="add_only" label="Add only" argument="add_only" type="boolean" truevalue="--add_only" falsevalue="" help="Use this flag if you're not updating existing features, but just adding new features to the selected analysis and organism. It will speedup loading, and reduce memory usage, but might produce errors in case of already existing feature." />
59
60 <expand macro="wait_for"/>
61 </inputs>
62 <outputs>
63 <data format="txt" name="results"/>
64 </outputs>
65 <help>
66 Load features from a gff file
67
68 @HELP@
69 </help>
70 </tool>