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
4818d276
Commit
4818d276
authored
8 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
Added config for each genome
parent
e1bc20b4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
generate-indexes/src/main/scala/nl/lumc/sasc/biopet/pipelines/generateindexes/GenerateIndexes.scala
+16
-5
16 additions, 5 deletions
...sc/biopet/pipelines/generateindexes/GenerateIndexes.scala
with
16 additions
and
5 deletions
generate-indexes/src/main/scala/nl/lumc/sasc/biopet/pipelines/generateindexes/GenerateIndexes.scala
+
16
−
5
View file @
4818d276
...
...
@@ -42,9 +42,7 @@ class GenerateIndexes(val root: Configurable) extends QScript with BiopetQScript
var
referenceConfig
:
Map
[
String
,
Any
]
=
null
var
configDeps
:
List
[
File
]
=
Nil
def
outputConfigFile
=
new
File
(
outputDir
,
"reference.json"
)
protected
var
configDeps
:
List
[
File
]
=
Nil
/** This is executed before the script starts */
def
init
()
:
Unit
=
{
...
...
@@ -59,6 +57,7 @@ class GenerateIndexes(val root: Configurable) extends QScript with BiopetQScript
val
speciesConfig
=
ConfigUtils
.
any2map
(
c
)
val
speciesDir
=
new
File
(
outputDir
,
speciesName
)
for
((
genomeName
,
c
)
<-
speciesConfig
)
yield
genomeName
->
{
var
configDeps
:
List
[
File
]
=
Nil
val
genomeConfig
=
ConfigUtils
.
any2map
(
c
)
val
fastaUris
=
genomeConfig
.
getOrElse
(
"fasta_uri"
,
throw
new
IllegalArgumentException
(
s
"No fasta_uri found for $speciesName - $genomeName"
))
match
{
...
...
@@ -246,6 +245,18 @@ class GenerateIndexes(val root: Configurable) extends QScript with BiopetQScript
"bowtie_index"
->
bowtie2Index
.
reference
.
getAbsolutePath
.
stripSuffix
(
".fa"
).
stripSuffix
(
".fasta"
)
)
add
(
new
InProcessFunction
{
@Input
val
deps
:
List
[
File
]
=
configDeps
@Output
val
out
:
File
=
new
File
(
genomeDir
,
s
"$speciesName-$genomeName.json"
)
def
run
:
Unit
=
{
val
writer
=
new
PrintWriter
(
out
)
writer
.
println
(
ConfigUtils
.
mapToJson
(
Map
(
"references"
->
Map
(
speciesName
->
Map
(
genomeName
->
outputConfig
)))).
spaces2
)
writer
.
close
()
}
})
this
.
configDeps
:::=
configDeps
outputConfig
}
}
...
...
@@ -253,10 +264,10 @@ class GenerateIndexes(val root: Configurable) extends QScript with BiopetQScript
add
(
new
InProcessFunction
{
@Input
val
deps
:
List
[
File
]
=
configDeps
@Output
val
out
=
outputConfigFile
@Output
val
out
=
new
PrintWriter
(
outputDir
,
"references.json"
)
def
run
:
Unit
=
{
val
writer
=
new
PrintWriter
(
out
putConfigFile
)
val
writer
=
new
PrintWriter
(
out
)
writer
.
println
(
ConfigUtils
.
mapToJson
(
Map
(
"references"
->
outputConfig
)).
spaces2
)
writer
.
close
()
}
...
...
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