Mercurial > repos > yating-l > hubarchivecreator
annotate trf_simpleRepeat.as @ 56:04cc7c2e7b47 draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 93e2e2fb59f99677425104a80c17f665fa7b2b4a-dirty
author | yating-l |
---|---|
date | Fri, 02 Jun 2017 17:28:01 -0400 |
parents | 4ced8f116509 |
children |
rev | line source |
---|---|
2
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
1 table simpleRepeat |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
2 "Describes the Simple Tandem Repeats" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
3 ( |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
4 string chrom; "Reference sequence chromosome or scaffold" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
5 uint chromStart; "Start position in chromosome" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
6 uint chromEnd; "End position in chromosome" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
7 string name; "Simple Repeats tag name" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
8 uint period; "Length of repeat unit" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
9 float copyNum; "Mean number of copies of repeat" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
10 uint consensusSize; "Length of consensus sequence" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
11 uint perMatch; "Percentage Match" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
12 uint perIndel; "Percentage Indel" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
13 uint score; "Alignment Score = 2*match-7*mismatch-7*indel; minscore=50" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
14 uint A; "Percent of A's in repeat unit" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
15 uint C; "Percent of C's in repeat unit" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
16 uint G; "Percent of G's in repeat unit" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
17 uint T; "Percent of T's in repeat unit" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
18 float entropy; "Entropy" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
19 lstring sequence; "Sequence of repeat unit element" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
20 ) |