Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
biopet.biopet
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirrors
biopet.biopet
Commits
0086a0a5
Commit
0086a0a5
authored
8 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
Fixed test
parent
3ef511a0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gentrap/src/test/scala/nl/lumc/sasc/biopet/pipelines/gentrap/GentrapTest.scala
+11
-6
11 additions, 6 deletions
...a/nl/lumc/sasc/biopet/pipelines/gentrap/GentrapTest.scala
with
11 additions
and
6 deletions
gentrap/src/test/scala/nl/lumc/sasc/biopet/pipelines/gentrap/GentrapTest.scala
+
11
−
6
View file @
0086a0a5
...
...
@@ -14,9 +14,10 @@
*/
package
nl.lumc.sasc.biopet.pipelines.gentrap
import
java.io.
{
File
,
FileOutputStream
}
import
java.io.
{
File
,
FileOutputStream
}
import
com.google.common.io.Files
import
nl.lumc.sasc.biopet.core.
{
BiopetFifoPipe
,
BiopetPipe
}
import
nl.lumc.sasc.biopet.extensions._
import
nl.lumc.sasc.biopet.extensions.gmap.Gsnap
import
nl.lumc.sasc.biopet.extensions.hisat.Hisat2
...
...
@@ -26,7 +27,7 @@ import nl.lumc.sasc.biopet.utils.config.Config
import
org.broadinstitute.gatk.queue.QSettings
import
org.scalatest.Matchers
import
org.scalatest.testng.TestNGSuite
import
org.testng.annotations.
{
DataProvider
,
Test
}
import
org.testng.annotations.
{
DataProvider
,
Test
}
abstract
class
GentrapTestAbstract
(
val
expressionMeasure
:
String
,
val
aligner
:
Option
[
String
])
extends
TestNGSuite
with
Matchers
{
...
...
@@ -114,7 +115,11 @@ abstract class GentrapTestAbstract(val expressionMeasure: String, val aligner: O
val
gentrap
:
Gentrap
=
initPipeline
(
config
)
gentrap
.
script
()
val
functions
=
gentrap
.
functions
.
groupBy
(
_
.
getClass
)
val
functions
=
gentrap
.
functions
.
flatMap
{
case
f
:
BiopetFifoPipe
=>
f
.
pipesJobs
case
f
:
BiopetPipe
=>
f
.
pipesJobs
case
f
=>
List
(
f
)
}.
groupBy
(
_
.
getClass
)
val
numSamples
=
sampleConfig
(
"samples"
).
size
if
(
expMeasures
.
contains
(
"fragments_per_gene"
))
...
...
@@ -151,15 +156,15 @@ abstract class GentrapTestAbstract(val expressionMeasure: String, val aligner: O
val
alignerClass
=
classMap
.
get
(
aligner
.
getOrElse
(
"gsnap"
))
alignerClass
.
foreach
(
c
=>
assert
(
gentrap
.
functions
.
exists
(
c
.
isInstance
(
_
)
)))
classMap
.
values
.
filterNot
(
Some
(
_
)
==
alignerClass
).
foreach
(
x
=>
assert
(!
gentrap
.
functions
.
exists
(
x
.
isInstance
(
_
)
)))
alignerClass
.
foreach
(
c
=>
assert
(
functions
.
keys
.
exists
(
_
==
c
)))
classMap
.
values
.
filterNot
(
Some
(
_
)
==
alignerClass
).
foreach
(
x
=>
assert
(!
functions
.
keys
.
exists
(
_
==
x
)))
}
}
class
GentrapFragmentsPerGeneTest
extends
GentrapTestAbstract
(
"fragments_per_gene"
,
None
)
//class GentrapFragmentsPerExonTest extends GentrapTestAbstract("fragments_per_exon", None)
class
GentrapBaseCountsTest
extends
GentrapTestAbstract
(
"base_counts"
,
Some
(
"gsnap"
)
)
class
GentrapBaseCountsTest
extends
GentrapTestAbstract
(
"base_counts"
,
None
)
class
GentrapCufflinksStrictTest
extends
GentrapTestAbstract
(
"cufflinks_strict"
,
None
)
class
GentrapCufflinksGuidedTest
extends
GentrapTestAbstract
(
"cufflinks_guided"
,
None
)
class
GentrapCufflinksBlindTest
extends
GentrapTestAbstract
(
"cufflinks_blind"
,
None
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment