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

added exextion on from region

parent 97803088
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,9 @@ object ExtractAlignedFastq extends ToolCommand {
def intFromCoord(s: String): Int = s.replaceAll(",", "").replaceAll("\\.", "").toInt
inStrings.map {
case ptn1(chr, start, end) if intFromCoord(end) > intFromCoord(start) => new Interval(chr, intFromCoord(start), intFromCoord(end))
case ptn1(chr, start, end) if intFromCoord(end) >= intFromCoord(start) => new Interval(chr, intFromCoord(start), intFromCoord(end))
case ptn1(chr, start, end) if intFromCoord(end) < intFromCoord(start) =>
throw new IllegalStateException(s"end is higher then start: $chr:$start-$end")
case ptn2(chr, start) =>
val startCoord = intFromCoord(start)
new Interval(chr, startCoord, startCoord)
......
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