Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
biopet.biopet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Mirrors
biopet.biopet
Commits
d44f4f5d
Commit
d44f4f5d
authored
Nov 21, 2016
by
Peter van 't Hof
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added text to arguments
parent
91af94b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/DownloadNcbiAssembly.scala
...cala/nl/lumc/sasc/biopet/tools/DownloadNcbiAssembly.scala
+8
-8
No files found.
biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/DownloadNcbiAssembly.scala
View file @
d44f4f5d
...
...
@@ -21,22 +21,22 @@ object DownloadNcbiAssembly extends ToolCommand {
class
OptParser
extends
AbstractOptParser
{
opt
[
String
](
'a'
,
"assembly id"
)
required
()
unbounded
()
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
assemblyId
=
x
)
}
}
text
"refseq ID from NCBI"
opt
[
File
](
'o'
,
"output"
)
required
()
unbounded
()
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
outputFile
=
x
)
}
}
text
"output Fasta file"
opt
[
File
](
"report"
)
unbounded
()
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
reportFile
=
Some
(
x
))
}
}
text
"where to write report from ncbi"
opt
[
String
](
"nameHeader"
)
unbounded
()
valueName
"<string>"
action
{
(
x
,
c
)
=>
c
.
copy
(
contigNameHeader
=
Some
(
x
))
}
opt
[(
String
,
String
)](
"mustHaveOne"
)
unbounded
()
valueName
"<
string
>"
action
{
(
x
,
c
)
=>
}
text
"What column to use from the NCBI report for the nam,e of the contigs"
opt
[(
String
,
String
)](
"mustHaveOne"
)
unbounded
()
valueName
"<
column_name=regex
>"
action
{
(
x
,
c
)
=>
c
.
copy
(
mustHaveOne
=
(
x
.
_1
,
x
.
_2
)
::
c
.
mustHaveOne
)
}
opt
[(
String
,
String
)](
"mustNotHave"
)
unbounded
()
valueName
"<
string
>"
action
{
(
x
,
c
)
=>
}
text
"This can be used to filter based on the NCBI report, multiple conditions can be given, at least 1 should be true"
opt
[(
String
,
String
)](
"mustNotHave"
)
unbounded
()
valueName
"<
column_name=regex
>"
action
{
(
x
,
c
)
=>
c
.
copy
(
mustNotHave
=
(
x
.
_1
,
x
.
_2
)
::
c
.
mustNotHave
)
}
}
text
"This can be used to filter based on the NCBI report, multiple conditions can be given, all should be false"
}
/**
...
...
Write
Preview
Markdown
is supported
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