Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
bf363cf7
Commit
bf363cf7
authored
Mar 07, 2017
by
Peter van 't Hof
Browse files
Fixed compile error
parent
9ce65deb
Changes
2
Hide whitespace changes
Inline
Side-by-side
biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/vcfstats/VcfStats.scala
View file @
bf363cf7
...
...
@@ -74,7 +74,7 @@ object VcfStats extends ToolCommand {
opt
[
File
](
'o'
,
"outputDir"
)
required
()
unbounded
()
maxOccurs
1
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
outputDir
=
x
)
}
validate
{
x
=>
if
(
x
.
exists
)
succes
else
failure
(
"Valid o
utput directory
required
"
)
x
=>
if
(
x
==
null
)
failure
(
"Valid output directory required"
)
else
if
(
x
.
exists
)
succes
s
else
failure
(
s
"O
utput directory
does not exist: $x
"
)
}
text
"Path to directory for output (required)"
opt
[
File
](
'i'
,
"intervals"
)
unbounded
()
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
intervals
=
Some
(
x
))
...
...
biopet-tools/src/test/scala/nl/lumc/sasc/biopet/tools/VcfStatsTest.scala
View file @
bf363cf7
...
...
@@ -15,15 +15,16 @@
package
nl.lumc.sasc.biopet.tools
import
java.io.File
import
java.nio.file.
{
Files
,
Paths
}
import
java.nio.file.
{
Files
,
Paths
}
import
htsjdk.variant.vcf.VCFFileReader
import
nl.lumc.sasc.biopet.tools.vcfstats.
{
SampleStats
,
SampleToSampleStats
,
Stats
,
VcfStats
}
import
nl.lumc.sasc.biopet.tools.vcfstats.
{
SampleStats
,
SampleToSampleStats
,
Stats
,
VcfStats
}
import
nl.lumc.sasc.biopet.tools.vcfstats.VcfStats._
import
org.scalatest.Matchers
import
org.scalatest.testng.TestNGSuite
import
org.testng.annotations.Test
import
nl.lumc.sasc.biopet.utils.sortAnyAny
import
org.apache.commons.io.FileUtils
import
scala.collection.mutable
...
...
@@ -162,6 +163,16 @@ class VcfStatsTest extends TestNGSuite with Matchers {
valueFromTsv
(
i
,
"Sample_ID_3"
,
"bam"
)
should
be
(
empty
)
}
@Test
def
testNoExistOutputDir
:
Unit
=
{
val
tmp
=
Files
.
createTempDirectory
(
"vcfStats"
)
FileUtils
.
deleteDirectory
(
new
File
(
tmp
.
toAbsolutePath
.
toString
))
val
vcf
=
resourcePath
(
"/chrQ.vcf.gz"
)
val
ref
=
resourcePath
(
"/fake_chrQ.fa"
)
an
[
IllegalArgumentException
]
should
be
thrownBy
main
(
Array
(
"-I"
,
vcf
,
"-R"
,
ref
,
"-o"
,
tmp
.
toAbsolutePath
.
toString
))
}
@Test
def
testMain
()
=
{
val
tmp
=
Files
.
createTempDirectory
(
"vcfStats"
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment