Skip to content
Snippets Groups Projects
Commit 2b62e291 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Sets utrs to None when not existing

parent 186b5775
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ case class BedRecord(chr: String,
blockStarts: Array[Int] = Array(),
protected[intervals] val _originals: List[BedRecord] = Nil) {
def originals(nested: Boolean = false): List[BedRecord] = {
def originals(nested: Boolean = true): List[BedRecord] = {
if (_originals.isEmpty) List(this)
else if (nested) _originals.flatMap(_.originals(true))
else _originals
......@@ -48,8 +48,10 @@ case class BedRecord(chr: String,
} else None
lazy val utr5 = (strand, thickStart, thickEnd) match {
case (Some(true), Some(tStart), Some(tEnd)) => Some(BedRecord(chr, start, tStart - 1, name.map(_ + "_utr5")))
case (Some(false), Some(tStart), Some(tEnd)) => Some(BedRecord(chr, tEnd + 1, end, name.map(_ + "_utr5")))
case (Some(true), Some(tStart), Some(tEnd)) if (tStart > start && tEnd < end) =>
Some(BedRecord(chr, start, tStart - 1, name.map(_ + "_utr5")))
case (Some(false), Some(tStart), Some(tEnd)) if (tStart > start && tEnd < end) =>
Some(BedRecord(chr, tEnd + 1, end, name.map(_ + "_utr5")))
case _ => None
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment