root/galaxy-central/tools/emboss_5/emboss_garnier.xml @ 2

リビジョン 2, 2.6 KB (コミッタ: hatakeyama, 14 年 前)

import galaxy-central

行番号 
1<tool id="EMBOSS: garnier40" name="garnier" version="5.0.0">
2  <description>Predicts protein secondary structure</description>
3  <requirements><requirement type="package" version="5.0.0">emboss</requirement></requirements>
4  <command>garnier -sequence $input1 -outfile $out_file1 -idc $idc -rformat2 $out_format1 -auto</command>
5  <inputs>
6    <param format="data" name="input1" type="data">
7      <label>Sequences</label>
8    </param>
9    <param name="idc" type="select">
10      <label>In their paper, GOR mention that if you know something about the secondary structure content of the protein you are analyzing, you can do better in prediction. 'idc' is an index into a
11      set of arrays, dharr[] and dsarr[], which provide 'decision constants' (dch, dcs), which are offsets that are applied to the weights for the helix and sheet (extend) terms. So, idc=0 says don't
12      use the decision constant offsets, and idc=1 to 6 indicates that various combinations of dch,dcs offsets should be used</label>
13      <option value="0">idc 0</option>
14      <option value="1">idc 1</option>
15      <option value="2">idc 2</option>
16      <option value="3">idc 3</option>
17      <option value="4">idc 4</option>
18      <option value="5">idc 5</option>
19      <option value="6">idc 6</option>
20    </param>
21    <param name="out_format1" type="select">
22      <label>Output Report File Format</label>
23      <option value="tagseq">TagSeq</option>
24      <option value="embl">EMBL</option>
25      <option value="genbank">GENBANK</option>
26      <option value="gff">GFF</option>
27      <option value="pir">PIR</option>
28      <option value="swiss">SwissProt</option>
29      <option value="dbmotif">DbMotif</option>
30      <option value="diffseq">Diffseq</option>
31      <option value="excel">Excel (tab delimited)</option>
32      <option value="feattable">FeatTable</option>
33      <option value="motif">Motif</option>
34      <option value="regions">Regions</option>
35      <option value="seqtable">SeqTable</option>
36      <option value="simple">SRS Simple</option>
37      <option value="srs">SRS</option>
38      <option value="table">Table</option>
39    </param>
40  </inputs>
41  <outputs>
42    <data format="garnier" name="out_file1" />
43  </outputs>
44  <tests>
45    <test>
46      <param name="input1" value="2.fasta"/>
47      <param name="idc" value="0"/>
48      <param name="out_format1" value="excel"/>
49      <output name="out_file1" file="emboss_garnier_out.tabular"/>
50    </test>
51  </tests>
52  <code file="emboss_format_corrector.py" />
53  <help>
54    You can view the original documentation here_.
55   
56    .. _here: http://emboss.sourceforge.net/apps/release/4.0/emboss/apps/garnier.html
57  </help>
58</tool>
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。