Mercurial > repos > bgruening > augustus
comparison augustus.xml @ 3:702d9e042295 draft
Uploaded
author | bgruening |
---|---|
date | Thu, 06 Jun 2013 13:26:37 -0400 |
parents | b8ccbad1b062 |
children | c243e17fb224 |
comparison
equal
deleted
inserted
replaced
2:b8ccbad1b062 | 3:702d9e042295 |
---|---|
1 <tool id="augustus" name="Augustus" version="0.3"> | 1 <tool id="augustus" name="Augustus" version="0.3"> |
2 <description>gene prediction for eukaryotic genomes</description> | 2 <description>gene prediction for eukaryotic genomes</description> |
3 <requirements> | 3 <requirements> |
4 <requirement type="package" version="2.7">augustus</requirement> | 4 <requirement type="package" version="2.7">augustus</requirement> |
5 <requirement type="set_environment">SCRIPT_PATH</requirement> | |
5 </requirements> | 6 </requirements> |
6 <command> | 7 <command> |
7 ## please set export AUGUSTUS_CONFIG_PATH=/path_to_augustus/augustus/config | 8 ## please set export AUGUSTUS_CONFIG_PATH=/path_to_augustus/augustus/config |
8 ## or use the --AUGUSTUS_CONFIG_PATH=path if you are not installing through the toolshed | 9 ## or use the --AUGUSTUS_CONFIG_PATH=path if you are not installing through the toolshed |
9 ## Augustus writes the protein and coding sequences as comment into the gff/gtf file an external script is used to extract the sequences into additional files | 10 ## Augustus writes the protein and coding sequences as comment into the gff/gtf file an external script is used to extract the sequences into additional files |
25 --genemodel=$genemodel | 26 --genemodel=$genemodel |
26 --species=$organism | 27 --species=$organism |
27 ##--outfile=$output | 28 ##--outfile=$output |
28 | tee $output | 29 | tee $output |
29 #if $protein or $codingseq: | 30 #if $protein or $codingseq: |
30 | python extract_features.py | 31 | python \$SCRIPT_PATH/extract_features.py |
31 #if $protein: | 32 #if $protein: |
32 --protein $protein_output | 33 --protein $protein_output |
33 #end if | 34 #end if |
34 #if $codingseq: | 35 #if $codingseq: |
35 --codingseq $codingseq_output | 36 --codingseq $codingseq_output |
134 <change_format> | 135 <change_format> |
135 <when input="gff" value="--gff3=on" format="gff" /> | 136 <when input="gff" value="--gff3=on" format="gff" /> |
136 </change_format> | 137 </change_format> |
137 </data> | 138 </data> |
138 <data format="fasta" name="protein_output"> | 139 <data format="fasta" name="protein_output"> |
139 <filter>protein == "--protein=on"</filter> | 140 <filter>protein == True</filter> |
140 </data> | 141 </data> |
141 <data format="fasta" name="codingseq_output"> | 142 <data format="fasta" name="codingseq_output"> |
142 <filter>codingseq == "--codingseq=on"</filter> | 143 <filter>codingseq == True</filter> |
143 </data> | 144 </data> |
144 </outputs> | 145 </outputs> |
145 <tests> | 146 <tests> |
146 <test> | 147 <test> |
147 <param name="input_genome" value="human_augustus.fa" ftype="fasta" /> | 148 <param name="input_genome" value="human_augustus.fa" ftype="fasta" /> |
160 <param name="input_genome" value="arabidopsis_augustus.fa" ftype="fasta" /> | 161 <param name="input_genome" value="arabidopsis_augustus.fa" ftype="fasta" /> |
161 <param name="organism" value="arabidopsis" /> | 162 <param name="organism" value="arabidopsis" /> |
162 <param name="singlestrand" value="--singlestrand=true" /> | 163 <param name="singlestrand" value="--singlestrand=true" /> |
163 <param name="mea" value="--mea=1" /> | 164 <param name="mea" value="--mea=1" /> |
164 <output name="output" file="arabidopsis_augustus_utr-off_singlestrand-on_mea-on" ftype="gtf" /> | 165 <output name="output" file="arabidopsis_augustus_utr-off_singlestrand-on_mea-on" ftype="gtf" /> |
166 </test> | |
167 <test> | |
168 <param name="input_genome" value="HS04636_augustus.fa" ftype="fasta" /> | |
169 <param name="organism" value="human" /> | |
170 <param name="protein" value="--protein=on" /> | |
171 <param name="codingseq" value="--codingseq=on" /> | |
172 <param name="introns" value="--introns=on" /> | |
173 <param name="cds" value="--cds=on" /> | |
174 <output name="output" file="human_augustus_protein_codingseq_introns_cds_main.gtf" ftype="gff" /> | |
175 <output name="codingseq_output" file="human_augustus_protein_codingseq_introns_cds_codingseq.fasta" ftype="fasta" /> | |
176 <output name="protein_output" file="human_augustus_protein_codingseq_introns_cds_protein.fasta" ftype="fasta" /> | |
165 </test> | 177 </test> |
166 </tests> | 178 </tests> |
167 <help> | 179 <help> |
168 | 180 |
169 **What it does** | 181 **What it does** |