Skip to content
GitLab
Menu
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
187bae8b
Commit
187bae8b
authored
Oct 22, 2014
by
bow
Browse files
Merge branch 'hotfix-0.1.4' into 'master'
Hotfix 0.1.4 Fix breaking bug on vcffilter tool See merge request !14
parents
4355447e
808646d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
biopet-framework/pom.xml
View file @
187bae8b
...
...
@@ -4,7 +4,7 @@
<groupId>
nl.lumc.sasc
</groupId>
<artifactId>
BiopetFramework
</artifactId>
<version>
0.1.
3
</version>
<version>
0.1.
4
</version>
<packaging>
jar
</packaging>
<name>
BiopetFramework
</name>
...
...
biopet-framework/src/main/scala/nl/lumc/sasc/biopet/tools/VcfFilter.scala
View file @
187bae8b
...
...
@@ -111,7 +111,7 @@ object VcfFilter extends ToolCommand {
if
(
record
.
getAttributeAsInt
(
"DP"
,
-
1
)
>=
commandArgs
.
minTotalDepth
&&
genotypes
.
count
(
_
==
true
)
>=
commandArgs
.
minSamplesPass
&&
bamADvalues
.
count
(
_
==
true
)
>=
commandArgs
.
minSamplesPass
)
(
commandArgs
.
minBamAlternateDepth
<=
0
||
bamADvalues
.
count
(
_
==
true
)
>=
commandArgs
.
minSamplesPass
)
)
writer
.
add
(
record
)
}
reader
.
close
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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