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
8e606123
Commit
8e606123
authored
9 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
Adding toucan to shiva
parent
d7efc98b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
public/shiva/pom.xml
+5
-0
5 additions, 0 deletions
public/shiva/pom.xml
public/shiva/src/main/scala/nl/lumc/sasc/biopet/pipelines/shiva/ShivaTrait.scala
+11
-0
11 additions, 0 deletions
...cala/nl/lumc/sasc/biopet/pipelines/shiva/ShivaTrait.scala
with
16 additions
and
0 deletions
public/shiva/pom.xml
+
5
−
0
View file @
8e606123
...
...
@@ -40,6 +40,11 @@
<artifactId>
Mapping
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
nl.lumc.sasc
</groupId>
<artifactId>
Toucan
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
org.testng
</groupId>
<artifactId>
testng
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
public/shiva/src/main/scala/nl/lumc/sasc/biopet/pipelines/shiva/ShivaTrait.scala
+
11
−
0
View file @
8e606123
...
...
@@ -24,6 +24,7 @@ import nl.lumc.sasc.biopet.extensions.Ln
import
nl.lumc.sasc.biopet.extensions.picard.
{
AddOrReplaceReadGroups
,
MarkDuplicates
,
SamToFastq
}
import
nl.lumc.sasc.biopet.pipelines.bammetrics.BamMetrics
import
nl.lumc.sasc.biopet.pipelines.mapping.Mapping
import
nl.lumc.sasc.biopet.pipelines.toucan.Toucan
import
scala.collection.JavaConversions._
...
...
@@ -292,6 +293,16 @@ trait ShivaTrait extends MultiSampleQScript with SummaryQScript with Reference {
vc
.
biopetScript
()
addAll
(
vc
.
functions
)
addSummaryQScript
(
vc
)
if
(
config
(
"annotation"
,
default
=
true
).
asBoolean
)
{
val
toucan
=
new
Toucan
(
this
)
toucan
.
outputDir
=
new
File
(
outputDir
,
"annotation"
)
toucan
.
inputVCF
=
vc
.
finalFile
toucan
.
init
()
toucan
.
biopetScript
()
addAll
(
toucan
.
functions
)
addSummaryQScript
(
toucan
)
}
})
svCalling
.
foreach
(
sv
=>
{
...
...
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