diff lib/config.R @ 8:3bc73f5dc785 draft

Uploaded
author petrn
date Fri, 20 Dec 2019 14:17:59 +0000
parents f6ebec6e235e
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/config.R	Fri Dec 20 14:17:59 2019 +0000
@@ -0,0 +1,11 @@
+#/usr/bin/env Rscript
+TANDEM_RANKS = c(
+      "Putative satellites (high confidence)" =  1,
+      "Putative satellites (low confidence)" = 2,
+      "Putative LTR elements" = 3,
+      "rDNA" = 4,
+      "Other" = 0
+)
+# inverted - key value
+RANKS_TANDEM = names(TANDEM_RANKS)
+names(RANKS_TANDEM) = TANDEM_RANKS