Mercurial > repos > mzeidler > virana_main
diff vref_fasta.xml @ 0:f63d639b223c draft
Initial Upload
| author | mzeidler |
|---|---|
| date | Wed, 25 Sep 2013 11:41:16 -0400 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vref_fasta.xml Wed Sep 25 11:41:16 2013 -0400 @@ -0,0 +1,49 @@ +<tool id="vref_fasta" name="Virana References"> + +<description>Obtains NCBI RefSeq and Ensembl reference genomes. </description> + + <requirements> + <requirement type="package" version="1.0">virana_python</requirement> + + + </requirements> + + <command interpreter="python">vref.py fasta --output_file $output + + #if $refseq + #set $groups = str($refseq).split(",") + #for $ref in $groups: + --reference $ref + #end for + #end if + + + $zipped + + 2>&1 + </command> + + <inputs> + <param name="refseq" type="select" label="Set RefSeq taxonomic groups" multiple="true" display="checkboxes"> + <option value="UniVec">UniVec</option> + <option value="rRNA">rRNA</option> + <option value="Homo_sapiens">Homo sapiens</option> + <option value="Fungi">Fungi</option> + <option value="Plasmids">Plasmids</option> + <option value="Protozoa">Protozoa</option> + <option value="Viruses">Viruses</option> + <option value="Homo_sapiens_cDNA">Homo sapiens cDNA</option> + <option value="Fungi_DRAFT">Fungi DRAFT</option> + <option value="Bacteria">Bacteria</option> + <option value="Bacteria_DRAFT">Bacteria DRAFT</option> + </param> + + <param name="zipped" type="boolean" label="check for zipped output?" truevalue="--zipped" falsevalue=""/> + + </inputs> + + + <outputs> + <data format="fasta" name="output" label="references.fasta"/> + </outputs> +</tool> \ No newline at end of file
