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

Added test for gtf down

parent a3c21103
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,20 @@ class GenerateIndexesTest extends TestNGSuite with Matchers {
pipeline.script()
}
@Test
def testGtfZipped: Unit = {
val pipeline = initPipeline(Map())
pipeline.referenceConfig = Map("s1" -> Map("g1" -> Map("fasta_uri" -> "uri", "gtf_uri" -> "bla.gf.gz")))
pipeline.script()
}
@Test
def testGtf: Unit = {
val pipeline = initPipeline(Map())
pipeline.referenceConfig = Map("s1" -> Map("g1" -> Map("fasta_uri" -> "uri", "gtf_uri" -> "bla.gf")))
pipeline.script()
}
}
object GenerateIndexesTest {
......
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