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
039c58a9
Commit
039c58a9
authored
8 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
Added text to cmdArgs
parent
378dc2a3
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/bamstats/BamStats.scala
+5
-5
5 additions, 5 deletions
...n/scala/nl/lumc/sasc/biopet/tools/bamstats/BamStats.scala
with
5 additions
and
5 deletions
biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/bamstats/BamStats.scala
+
5
−
5
View file @
039c58a9
...
...
@@ -29,19 +29,19 @@ object BamStats extends ToolCommand {
class
OptParser
extends
AbstractOptParser
{
opt
[
File
](
'R'
,
"reference"
)
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
referenceFasta
=
Some
(
x
))
}
}
text
"Fasta file of reference"
opt
[
File
](
'o'
,
"outputDir"
)
required
()
valueName
"<directory>"
action
{
(
x
,
c
)
=>
c
.
copy
(
outputDir
=
x
)
}
}
text
"Output directory"
opt
[
File
](
'b'
,
"bam"
)
required
()
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
bamFile
=
x
)
}
}
text
"Input bam file"
opt
[
Int
](
"binSize"
)
valueName
"<int>"
action
{
(
x
,
c
)
=>
c
.
copy
(
binSize
=
x
)
}
}
text
"Bin size of stats (beta)"
opt
[
Int
](
"threadBinSize"
)
valueName
"<int>"
action
{
(
x
,
c
)
=>
c
.
copy
(
threadBinSize
=
x
)
}
}
text
"Size of region per thread"
}
/** This is the main entry to [[BamStats]], this will do the argument parsing. */
...
...
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