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
bf514e93
Commit
bf514e93
authored
8 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused trait
parent
ff0d656a
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-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/gatk/broad/GatkGeneral.scala
+0
-44
0 additions, 44 deletions
.../lumc/sasc/biopet/extensions/gatk/broad/GatkGeneral.scala
with
0 additions
and
44 deletions
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/gatk/broad/GatkGeneral.scala
deleted
100644 → 0
+
0
−
44
View file @
ff0d656a
package
nl.lumc.sasc.biopet.extensions.gatk.broad
import
nl.lumc.sasc.biopet.core._
import
org.broadinstitute.gatk.engine.phonehome.GATKRunReport
/**
* @deprecated
*/
trait
GatkGeneral
extends
org
.
broadinstitute
.
gatk
.
queue
.
extensions
.
gatk
.
CommandLineGATK
with
CommandLineResources
with
Reference
with
Version
{
var
executable
:
String
=
config
(
"java"
,
default
=
"java"
,
namespace
=
"java"
,
freeVar
=
false
)
override
def
subPath
=
"gatk"
::
super
.
subPath
jarFile
=
config
(
"gatk_jar"
)
reference_sequence
=
referenceFasta
()
override
def
defaultCoreMemory
=
4.0
override
def
faiRequired
=
true
override
def
dictRequired
=
true
if
(
config
.
contains
(
"intervals"
))
intervals
=
config
(
"intervals"
).
asFileList
if
(
config
.
contains
(
"exclude_intervals"
))
excludeIntervals
=
config
(
"exclude_intervals"
).
asFileList
Option
(
config
(
"et"
).
value
)
match
{
case
Some
(
"NO_ET"
)
=>
et
=
GATKRunReport
.
PhoneHomeOption
.
NO_ET
case
Some
(
"AWS"
)
=>
et
=
GATKRunReport
.
PhoneHomeOption
.
AWS
case
Some
(
"STDOUT"
)
=>
et
=
GATKRunReport
.
PhoneHomeOption
.
STDOUT
case
Some
(
x
)
=>
throw
new
IllegalArgumentException
(
s
"Unknown et option for gatk: $x"
)
case
_
=>
}
if
(
config
.
contains
(
"gatk_key"
))
gatk_key
=
config
(
"gatk_key"
)
if
(
config
.
contains
(
"pedigree"
))
pedigree
=
config
(
"pedigree"
)
def
versionRegex
=
"""(.*)"""
.
r
override
def
versionExitcode
=
List
(
0
,
1
)
def
versionCommand
=
"java"
+
" -jar "
+
jarFile
+
" -version"
override
def
getVersion
=
{
BiopetCommandLineFunction
.
preProcessExecutable
(
executable
).
path
.
foreach
(
executable
=
_
)
super
.
getVersion
.
collect
{
case
v
=>
"Gatk "
+
v
}
}
}
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