annotate dfast.xml @ 0:6ddc8a6503e7 draft default tip

planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
author leomrtns
date Thu, 03 Oct 2019 12:41:36 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
1 <tool id="dfast" name="dfast" version="@VERSION@">
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
2 <description>prokaryotic genome annotation</description>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
3 <macros>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
4 <import>macros.xml</import>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
5 </macros>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
6 <expand macro="requirements" />
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
7 <expand macro="version_command" />
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
9 #import re
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
10 #if $ortho.use
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
11 #set $ref_set_str = ''
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
12 #set $divisor = ''
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
13 #for $i_file in $ortho.refs:
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
14 #set $ref_set_str = $ref_set_str + $divisor + "{}".format($i_file)
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
15 #set $divisor = ';' ### will create "A ; B ; C "
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
16 #end for
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
17 #end if
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
18 #if $genome_input.is_of_type('fasta'):
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
19 ln -s ${genome_input} in.fasta &&
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
20 #elif $genome_input.is_of_type('fasta.gz'):
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
21 gunzip -c ${genome_input} > in.fasta &&
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
22 #elif $genome_input.is_of_type('fasta.bz2'):
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
23 bunzip2 -c ${genome_input} > in.fasta &&
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
24 #end if
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
25 dfast -g in.fasta
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
26 -o OUT
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
27 --cpu \${GALAXY_SLOTS:-1}
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
28 --aligner ${aligner}
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
29 --gcode ${gcode}
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
30 --use_original_name ${use_orig_name}
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
31 --sort_sequence ${sort_sequence}
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
32 --use_separate_tags ${separate_tags}
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
33 #if str($min_length) != ""
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
34 --minimum_length ${min_length}
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
35 #end if
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
36 #if $ortho.use
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
37 --references "${ref_set_str}"
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
38 #end if
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
39 ${fix_origin}
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
40 ]]></command>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
41 <inputs>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
42 <param name="genome_input" multiple="false" format="fasta, fasta.gz, fasta.bz2" type="data" label="Genome to be annotated, in fasta format (can be zipped)"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
43
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
44 <param name="aligner" type="select" label="Aligner" help="Safer to leave the default (ghostx)">
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
45 <option value="ghostx" selected="true">ghostx (default)</option>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
46 <option value="blastp">blastp (experimental, since didn't pass local tests) </option>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
47 </param>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
48
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
49 <param name="gcode" type="select" label="Genetic code">
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
50 <option value="11" selected="true">Default</option>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
51 <option value="4">Mycoplasma</option>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
52 </param>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
53
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
54 <param name="use_orig_name" type="boolean" truevalue="t" falsevalue="f" checked="false" help="--use_original_name" label="Use original sequence names in a query FASTA file"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
55
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
56 <param name="sort_sequence" type="boolean" truevalue="t" falsevalue="f" checked="true" help="--sort_sequence" label="Sort sequences by length"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
57
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
58 <param name="min_length" type="integer" label="Minimum sequence length (default:200)" help="--minimum_length" optional="true" />
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
59
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
60 <param name="separate_tags" type="boolean" truevalue="t" falsevalue="f" checked="true" help="--use_separate_tags" label="Use separate tags according to feature types"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
61
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
62 <param name="fix_origin" type="boolean" truevalue="--fix_origin" falsevalue="" checked="false" help="--fix_origin"
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
63 label="Rotate/flip the chromosome so that the dnaA gene comes first. (ONLY FOR A FINISHED GENOME)" />
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
64
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
65 <conditional name="ortho">
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
66 <param name="use" type="boolean" checked="false" help="--references" label="orthologous gene assignment with OrthoSearch"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
67 <when value="true">
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
68 <param name="refs" type="data" multiple="true" format="genbank,embl,asn1" label="One or more genbank reference genomes">
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
69 <help><![CDATA[
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
70 OrthoSearch conducts all-against-all protein alignments between the given reference genomes to infer orthologous genes.
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
71 ]]></help>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
72 </param>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
73 </when>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
74 <when value="false"> </when>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
75 </conditional>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
76 </inputs>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
77 <outputs>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
78 <data name="g_embl" format="embl" label="Annotated genome in EMBL format" from_work_dir="OUT/genome.embl"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
79 <data name="g_gbk" format="genbank" label="Annotated genome in GENBANK format" from_work_dir="OUT/genome.gbk"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
80 <data name="g_gff" format="gff" label="Annotated genome in GFF format" from_work_dir="OUT/genome.gff"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
81 <data name="e_fsa" format="fasta" label="fsa file for Genbank submission" from_work_dir="OUT/genbank/genbank.fsa"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
82 <data name="e_tbl" format="txt" label="tbl file for Genbank submission" from_work_dir="OUT/genbank/genbank.tbl"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
83 <data name="e_fsa" format="fasta" label="fasta file for DDBJ submission" from_work_dir="OUT/ddbj/mss.fasta"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
84 <data name="e_fsa" format="txt" label="ann file for DDBJ submission" from_work_dir="OUT/ddbj/mss.ann"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
85 <data name="g_fna" format="fasta" label="Genome sequences in fasta format" from_work_dir="OUT/genome.fna"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
86 <data name="p_faa" format="fasta" label="Predicted proteins (fasta)" from_work_dir="OUT/protein.faa"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
87 <data name="r_fna" format="fasta" label="Predicted RNAs (fasta)" from_work_dir="OUT/rna.fna"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
88 <data name="c_fna" format="fasta" label="Predicted CDs (fasta)" from_work_dir="OUT/cds.fna"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
89 <data name="stats" format="tabular" label="overall statistics" from_work_dir="OUT/statistics.txt"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
90 </outputs>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
91 <tests>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
92 <test>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
93 <param name="genome_input" value="test.genome.fna"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
94 <param name="fast" value="true"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
95 <param name="inputtre" value="HOG1.tre,HOG2.tre,HOG3.tre,HOG4.tre,HOG5.tre"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
96 <output name="stats" file="statistics.txt"/>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
97 </test>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
98 </tests>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
99 <help><![CDATA[
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
100 DFAST is a flexible and customizable pipeline for prokaryotic genome annotation as well as data submission to the
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
101 INSDC. It is originally developed as the background engine for the DFAST web service and is also available as a
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
102 stand-alone command-line tool.
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
103
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
104 DFAST can annotate a typical-sized bacterial genome within several minutes. In addition to the conventional
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
105 homology search, it features unique functions such as orthologous gene assignment between reference genomes,
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
106 pseudo/frameshifted gene prediction, and conserved domain search.
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
107
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
108 This galaxy tool may be incomplete, please let us know if there is any missing functionality.
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
109 ]]></help>
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
110 <expand macro="citations" />
6ddc8a6503e7 planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/dfast
leomrtns
parents:
diff changeset
111 </tool>