diff --git a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/utils/intervals/BedRecord.scala b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/utils/intervals/BedRecord.scala index d581f248daeaf3f5f392a1be9f0dca314f141dc5..320a98a1ef39f9cad7e2526701ae31fd2ac057de 100644 --- a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/utils/intervals/BedRecord.scala +++ b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/utils/intervals/BedRecord.scala @@ -8,7 +8,7 @@ case class BedRecord(chr: String, end: Int, name: Option[String] = None, score: Option[Double] = None, - strand: Boolean = true, + strand: Option[Boolean] = None, thickStart: Option[Int] = None, thickEnd: Option[Int] = None, rgbColor: Option[(Int, Int, Int)] = None, @@ -32,11 +32,11 @@ object BedRecord { values(2).toInt, values.lift(3), values.lift(4).map(_.toInt), - values.lift(5) match { - case Some("-") => false - case Some("+") => true + values.lift(5).map(_ match { + case "-" => false + case "+" => true case _ => throw new IllegalStateException("Strand (column 6) must be '+' or '-'") - }, + }), values.lift(6).map(_.toInt), values.lift(7)map(_.toInt), values.lift(8).map(_.split(",", 3).map(_.toInt)).map(x => (x.lift(0).getOrElse(0),x.lift(1).getOrElse(0),x.lift(2).getOrElse(0))),