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
1f5b341b
Commit
1f5b341b
authored
10 years ago
by
bow
Browse files
Options
Downloads
Patches
Plain Diff
More main test
parent
c1fd16a8
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
biopet-framework/src/test/scala/nl/lumc/sasc/biopet/tools/ExtractAlignedFastqUnitTest.scala
+22
-0
22 additions, 0 deletions
.../lumc/sasc/biopet/tools/ExtractAlignedFastqUnitTest.scala
with
22 additions
and
0 deletions
biopet-framework/src/test/scala/nl/lumc/sasc/biopet/tools/ExtractAlignedFastqUnitTest.scala
+
22
−
0
View file @
1f5b341b
...
...
@@ -251,4 +251,26 @@ class ExtractAlignedFastqUnitTest extends TestNGSuite with MockitoSugar with Mat
parsed
.
inputFastq1
.
getPath
should
===(
resourcePath
(
"/single01.fq"
))
parsed
.
outputFastq1
.
getPath
should
===(
"/tmp/tm1.fq"
)
}
@Test
def
testMainMaximum
()
=
{
val
args
=
Array
(
"-I"
,
resourcePath
(
"/paired01.bam"
),
"--interval"
,
"chrQ:1-400"
,
"-i"
,
resourcePath
(
"/paired01a.fq"
),
"-j"
,
resourcePath
(
"/paired01b.fq"
),
"-o"
,
"/tmp/tm1.fq"
,
"-p"
,
"/tmp/tm2.fq"
,
"-s"
,
"2"
,
"-Q"
,
"30"
)
val
parsed
=
parseArgs
(
args
)
parsed
.
inputBam
.
getPath
should
===(
resourcePath
(
"/paired01.bam"
))
parsed
.
intervals
shouldBe
List
(
"chrQ:1-400"
)
parsed
.
inputFastq1
.
getPath
should
===(
resourcePath
(
"/paired01a.fq"
))
parsed
.
inputFastq2
.
get
.
getPath
should
===(
resourcePath
(
"/paired01b.fq"
))
parsed
.
outputFastq1
.
getPath
should
===(
"/tmp/tm1.fq"
)
parsed
.
outputFastq2
.
get
.
getPath
should
===(
"/tmp/tm2.fq"
)
parsed
.
commonSuffixLength
shouldBe
2
parsed
.
minMapQ
shouldBe
30
}
}
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