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
332551f8
Commit
332551f8
authored
Jan 04, 2017
by
Peter van 't Hof
Browse files
Removed output files
parent
98c67be4
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-tools-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/tools/BamStats.scala
View file @
332551f8
...
...
@@ -40,17 +40,11 @@ class BamStats(val root: Configurable) extends ToolCommandFunction with Referenc
private
var
outputFiles
:
List
[
File
]
=
Nil
def
bamstatsSummary
:
File
=
new
File
(
outputDir
,
"bamstats.summary.json"
)
def
flagstatSummaryFile
(
contig
:
Option
[
String
]
=
None
)
:
File
=
getOutputFile
(
"flagstats.summary.json"
,
contig
)
def
mappingQualityFile
(
contig
:
Option
[
String
]
=
None
)
:
File
=
getOutputFile
(
"mapping_quality.tsv"
,
contig
)
def
clipingFile
(
contig
:
Option
[
String
]
=
None
)
:
File
=
getOutputFile
(
"clipping.tsv"
,
contig
)
override
def
beforeGraph
()
{
super
.
beforeGraph
()
deps
:+=
new
File
(
bamFile
.
getAbsolutePath
.
replaceAll
(
".bam$"
,
".bai"
))
outputFiles
:+=
bamstatsSummary
outputFiles
:+=
flagstatSummaryFile
()
outputFiles
:+=
mappingQualityFile
()
outputFiles
:+=
clipingFile
()
jobOutputFile
=
new
File
(
outputDir
,
".bamstats.out"
)
if
(
reference
==
null
)
reference
=
referenceFasta
()
}
...
...
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