Mercurial > repos > yating-l > hubarchivecreator
annotate bigPsl.as @ 42:ed1afba6b16c draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit e42ecb807fb34a8e4ddcf96944dd74d24c695352-dirty
author | yating-l |
---|---|
date | Fri, 30 Dec 2016 10:20:24 -0500 |
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 bigPsl |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
2 "bigPsl pairwise alignment" |
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; "Name or ID of item, ideally both human readable and unique" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
8 uint score; "Score (0-1000)" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
9 char[1] strand; "+ or - for strand" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
10 uint thickStart; "Start of where display should be thick (start codon)" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
11 uint thickEnd; "End of where display should be thick (stop codon)" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
12 uint reserved; "RGB value (use R,G,B string in input file)" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
13 int blockCount; "Number of blocks" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
14 int[blockCount] blockSizes; "Comma separated list of block sizes" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
15 int[blockCount] chromStarts; "Start positions relative to chromStart" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
16 |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
17 uint oChromStart;"Start position in other chromosome" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
18 uint oChromEnd; "End position in other chromosome" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
19 char[1] oStrand; "+ or - for other strand" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
20 uint oChromSize; "Size of other chromosome." |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
21 int[blockCount] oChromStarts; "Start positions relative to oChromStart" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
22 |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
23 lstring oSequence; "Sequence on other chrom (or edit list, or empty)" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
24 string oCDS; "CDS in NCBI format" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
25 |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
26 uint chromSize;"Size of target chromosome" |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
27 |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
28 uint match; "Number of bases matched." |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
29 uint misMatch; " Number of bases that don't match " |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
30 uint repMatch; " Number of bases that match but are part of repeats " |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
31 uint nCount; " Number of 'N' bases " |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
32 ) |
4ced8f116509
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 23b12dd763c0235674988ebdf6a258afd1ad629a-dirty
yating-l
parents:
diff
changeset
|
33 |