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
63a0ef68
Commit
63a0ef68
authored
10 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
Fix for #95
parent
b2a02952
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
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/tools/VcfFilter.scala
+3
-3
3 additions, 3 deletions
.../src/main/scala/nl/lumc/sasc/biopet/tools/VcfFilter.scala
with
3 additions
and
3 deletions
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/tools/VcfFilter.scala
+
3
−
3
View file @
63a0ef68
...
...
@@ -97,13 +97,13 @@ object VcfFilter extends ToolCommand {
}
text
(
"Min value of AD field in genotype fields"
)
opt
[
Int
](
"minSamplesPass"
)
unbounded
()
valueName
(
"<int>"
)
action
{
(
x
,
c
)
=>
c
.
copy
(
minSamplesPass
=
x
)
}
text
(
"Min number o
p
f samples to pass --minAlternateDepth, --minBamAlternateDepth and --minSampleDepth"
)
}
text
(
"Min number o
f
f samples to pass --minAlternateDepth, --minBamAlternateDepth and --minSampleDepth"
)
opt
[
Int
](
"minBamAlternateDepth"
)
unbounded
()
valueName
(
"<int>"
)
action
{
(
x
,
c
)
=>
c
.
copy
(
minBamAlternateDepth
=
x
)
}
// TODO: Convert this to more generic filter
opt
[
String
](
"denovoInSample"
)
maxOccurs
(
1
)
unbounded
()
valueName
(
"<sample>"
)
action
{
(
x
,
c
)
=>
c
.
copy
(
denovoInSample
=
x
)
}
text
(
"Only show variants that contain unique alleles in compete set for given sample"
)
}
text
(
"Only show variants that contain unique alleles in comp
l
ete set for given sample"
)
opt
[
String
](
"mustHaveVariant"
)
unbounded
()
valueName
(
"<sample>"
)
action
{
(
x
,
c
)
=>
c
.
copy
(
mustHaveVariant
=
x
::
c
.
mustHaveVariant
)
}
text
(
"Given sample must have 1 alternative allele"
)
...
...
@@ -114,7 +114,7 @@ object VcfFilter extends ToolCommand {
opt
[
String
](
"filterHetVarToHomVar"
)
unbounded
()
valueName
(
"<sample:sample>"
)
action
{
(
x
,
c
)
=>
c
.
copy
(
filterHetVarToHomVar
=
(
x
.
split
(
":"
)(
0
),
x
.
split
(
":"
)(
1
))
::
c
.
filterHetVarToHomVar
)
}
validate
{
x
=>
if
(
x
.
split
(
":"
).
length
==
2
)
success
else
failure
(
"--filterHetVarToHomVar should be in this format: sample:sample"
)
}
text
(
"If variants in sample 1 are heterogeneous and alternative alleles are homogeneous in sample 2 variants are filterd"
)
}
text
(
"If variants in sample 1 are heterogeneous and alternative alleles are homogeneous in sample 2 variants are filter
e
d"
)
opt
[
Unit
](
"filterRefCalls"
)
unbounded
()
action
{
(
x
,
c
)
=>
c
.
copy
(
filterRefCalls
=
true
)
}
text
(
"Filter when there are only ref calls"
)
...
...
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