annotate mytools/fastashuffle2.xml @ 0:39217fa39ff2

Uploaded
author xuebing
date Tue, 13 Mar 2012 23:34:52 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
1 <tool id="seqshuffle2" name="shuffle sequence">
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
2 <description>preserving dinucleotide frequency</description>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">fasta-dinucleotide-shuffle.py -f $input -t $tag -c $n -s $seed > $output </command>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
4 <inputs>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
5 <param name="input" format="fasta" type="data" label="Original sequence file"/>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
6 <param name="tag" type="text" size="40" value="-shuffled" label="tag added to shuffled sequence name"/>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
7 <param name="n" type="integer" value="1" label="number of shuffled copies for each sequence"/>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
8 <param name="seed" type="integer" value="1" label="random seed" help="the same seed gives the same random sequences"/>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
9 </inputs>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
10 <outputs>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
11 <data format="fasta" name="output" />
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
12 </outputs>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
13 <help>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
14
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
15 **What it does**
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
16
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
17 This tool shuffles the sequences in the input file but preserves the dinucleotide frequency of each sequence.
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
18
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
19 The code implements the Altschul-Erikson dinucleotide shuffle algorithm, described in "Significance of nucleotide sequence alignments: A method for random sequence permutation that preserves dinucleotide and codon usage", S.F. Altschul and B.W. Erikson, Mol. Biol. Evol., 2(6):526--538, 1985.
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
20
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
21 Code adapted from http://bioinformatics.bc.edu/clotelab/RNAdinucleotideShuffle/dinucleotideShuffle.html
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
22
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
23 </help>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
24 </tool>