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
acd85018
Commit
acd85018
authored
8 years ago
by
Moustakas
Browse files
Options
Downloads
Patches
Plain Diff
Improve user documentation for the tool
parent
86c0fea2
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-tools/src/main/scala/nl/lumc/sasc/biopet/tools/AnnotateVcfWithBed.scala
+6
-6
6 additions, 6 deletions
.../scala/nl/lumc/sasc/biopet/tools/AnnotateVcfWithBed.scala
with
6 additions
and
6 deletions
biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/AnnotateVcfWithBed.scala
+
6
−
6
View file @
acd85018
...
...
@@ -52,22 +52,22 @@ object AnnotateVcfWithBed extends ToolCommand {
class
OptParser
extends
AbstractOptParser
{
opt
[
File
](
'I'
,
"inputFile"
)
required
()
unbounded
()
valueName
"<vcf file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
inputFile
=
x
)
}
text
"Input
is a required file property
"
}
text
"Input
VCF file. Mandatory field
"
opt
[
File
](
'B'
,
"bedFile"
)
required
()
unbounded
()
valueName
"<bed file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
bedFile
=
x
)
}
text
"Bedfile
is a required file property
"
}
text
"
Input
Bed
file
. Mandatory field
"
opt
[
File
](
'o'
,
"output"
)
required
()
unbounded
()
valueName
"<vcf file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
outputFile
=
x
)
}
text
"
o
ut
is a required file property
"
}
text
"
O
ut
put VCF file. Mandatory field
"
opt
[
String
](
'f'
,
"fieldName"
)
required
()
unbounded
()
valueName
"<name of field in vcf file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
fieldName
=
x
)
}
text
"Name of info field in new vcf file"
opt
[
String
](
'd'
,
"fieldDescription"
)
unbounded
()
valueName
"<
name
of field in vcf file>"
action
{
(
x
,
c
)
=>
opt
[
String
](
'd'
,
"fieldDescription"
)
unbounded
()
valueName
"<
description
of field in vcf file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
fieldDescription
=
x
)
}
text
"Description of field in new vcf file"
opt
[
String
](
't'
,
"fieldType"
)
unbounded
()
valueName
"<
nam
e of field in vcf file>"
action
{
(
x
,
c
)
=>
opt
[
String
](
't'
,
"fieldType"
)
unbounded
()
valueName
"<
typ
e of field in vcf file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
fieldType
=
x
)
}
text
"
Description
of field in new vcf file"
}
text
"
Type
of field in new vcf file
. Can be 'Integer', 'Flag', 'Character', 'Float'
"
}
/**
...
...
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