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

Remove second exception

parent 34b35a99
No related branches found
No related tags found
No related merge requests found
......@@ -64,8 +64,6 @@ object ExtractAlignedFastq extends ToolCommand {
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) =>
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