Skip to content

Commit

Permalink
Added ncRNA biotype to NCBI RefSeq GFF parser.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfenne committed Jun 10, 2022
1 parent a388b0d commit 7326a77
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ object GeneAnnotations {
case object LncRna extends GeneBiotype { val refSeqValue = "lncRNA"; val isCoding = false }
case object MiRna extends GeneBiotype { val refSeqValue = "miRNA"; val isCoding = false }
case object MiscRna extends GeneBiotype { val refSeqValue = "misc_RNA"; val isCoding = false }
case object NcRna extends GeneBiotype { val refSeqValue = "ncRNA"; val isCoding = false }
case object Other extends GeneBiotype { val refSeqValue = "other"; val isCoding = false }
case object ProteinCoding extends GeneBiotype { val refSeqValue = "protein_coding"; val isCoding = true }
case object RNaseMrpRna extends GeneBiotype { val refSeqValue = "RNase_MRP_RNA"; val isCoding = false }
Expand Down

0 comments on commit 7326a77

Please sign in to comment.