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
a7b9890f
Commit
a7b9890f
authored
Mar 13, 2015
by
bow
Browse files
Use correct flag annotations for Picard CollectRnaSeqMetrics
parent
80353a70
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/picard/CollectRnaSeqMetrics.scala
View file @
a7b9890f
...
...
@@ -34,11 +34,14 @@ class CollectRnaSeqMetrics(val root: Configurable) extends Picard with Summariza
@Input
(
doc
=
"Gene annotations in refFlat form"
,
required
=
true
)
var
refFlat
:
File
=
null
@Input
(
doc
=
"Location of rRNA sequences in interval list format"
,
required
=
false
)
var
ribosomalIntervals
:
Option
[
File
]
=
config
(
"ribosomal_intervals"
)
@Output
(
doc
=
"Output metrics file"
,
required
=
true
)
var
output
:
File
=
null
@
Argumen
t
(
doc
=
"
Location of rRNA sequences in interval list forma
t"
,
required
=
false
)
var
ribosomalIntervals
:
Option
[
File
]
=
config
(
"
ribosomal_intervals
"
)
@
Outpu
t
(
doc
=
"
PDF output of the coverage char
t"
,
required
=
false
)
var
chartOutput
:
Option
[
File
]
=
config
(
"
chart_output
"
)
@Argument
(
doc
=
"Strand specificity"
,
required
=
false
)
var
strandSpecificity
:
Option
[
String
]
=
config
(
"strand_specificity"
)
...
...
@@ -46,9 +49,6 @@ class CollectRnaSeqMetrics(val root: Configurable) extends Picard with Summariza
@Argument
(
doc
=
"Minimum length of transcripts to use for coverage-based values calculation"
,
required
=
false
)
var
minimumLength
:
Option
[
Int
]
=
config
(
"minimum_length"
)
@Argument
(
doc
=
"PDF output of the coverage chart"
,
required
=
false
)
var
chartOutput
:
Option
[
File
]
=
config
(
"chart_output"
)
@Argument
(
doc
=
"Sequences to ignore for mapped reads"
,
required
=
false
)
var
ignoreSequence
:
Option
[
String
]
=
config
(
"ignore_sequence"
)
...
...
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