Mercurial > repos > petr-novak > repeatrxplorer
annotate lib/config.R @ 0:1d1b9e1b2e2f draft
Uploaded
author | petr-novak |
---|---|
date | Thu, 19 Dec 2019 10:24:45 -0500 |
parents | |
children |
rev | line source |
---|---|
0 | 1 #/usr/bin/env Rscript |
2 TANDEM_RANKS = c( | |
3 "Putative satellites (high confidence)" = 1, | |
4 "Putative satellites (low confidence)" = 2, | |
5 "Putative LTR elements" = 3, | |
6 "rDNA" = 4, | |
7 "Other" = 0 | |
8 ) | |
9 # inverted - key value | |
10 RANKS_TANDEM = names(TANDEM_RANKS) | |
11 names(RANKS_TANDEM) = TANDEM_RANKS |