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
af88febc
Commit
af88febc
authored
Apr 11, 2017
by
Peter van 't Hof
Committed by
GitHub
Apr 11, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #65 from biopet/fix-BIOPET-642
Fixing nullpointer
parents
625bb514
1a99be40
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/BiopetCommandLineFunction.scala
.../nl/lumc/sasc/biopet/core/BiopetCommandLineFunction.scala
+1
-1
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/bedtools/BedtoolsIntersect.scala
...c/sasc/biopet/extensions/bedtools/BedtoolsIntersect.scala
+5
-4
No files found.
biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/BiopetCommandLineFunction.scala
View file @
af88febc
...
...
@@ -99,7 +99,7 @@ trait BiopetCommandLineFunction extends CommandLineResources { biopetFunction =>
beforeGraph
()
internalBeforeGraph
()
this
.
commandDirectory
=
this
.
jobOutput
File
.
getParentFile
if
(
jobOutputFile
!=
null
)
this
.
commandDirectory
=
this
.
jobOutputFile
.
getAbsolute
File
.
getParentFile
super
.
freezeFieldValues
()
}
...
...
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/bedtools/BedtoolsIntersect.scala
View file @
af88febc
...
...
@@ -23,13 +23,13 @@ import org.broadinstitute.gatk.utils.commandline.{ Argument, Input, Output }
class
BedtoolsIntersect
(
val
parent
:
Configurable
)
extends
Bedtools
{
@Input
(
doc
=
"Input file (bed/gff/vcf/bam)"
)
var
input
:
File
=
null
var
input
:
File
=
_
@Input
(
doc
=
"Intersect file (bed/gff/vcf)"
)
var
intersectFile
:
File
=
null
var
intersectFile
:
File
=
_
@Output
(
doc
=
"output File"
)
var
output
:
File
=
null
var
output
:
File
=
_
@Argument
(
doc
=
"Min overlap"
,
required
=
false
)
var
minOverlap
:
Option
[
Double
]
=
config
(
"minoverlap"
)
...
...
@@ -46,7 +46,8 @@ class BedtoolsIntersect(val parent: Configurable) extends Bedtools {
}
/** Returns command to execute */
def
cmdLine
=
required
(
executable
)
+
required
(
"intersect"
)
+
def
cmdLine
:
String
=
required
(
executable
)
+
required
(
"intersect"
)
+
required
(
inputTag
,
input
)
+
required
(
"-b"
,
intersectFile
)
+
optional
(
"-f"
,
minOverlap
)
+
...
...
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