Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
ngs_tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
bioinfo
ngs_tools
Commits
c068561a
Commit
c068561a
authored
8 years ago
by
Holger Brandl
Browse files
Options
Downloads
Patches
Plain Diff
updated kotlin support API dependency
parent
f7692962
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
dge_workflow/star_align.kts
+5
-6
5 additions, 6 deletions
dge_workflow/star_align.kts
with
5 additions
and
6 deletions
dge_workflow/star_align.kts
+
5
−
6
View file @
c068561a
#
!/
usr
/
bin
/
env
kscript
//DEPS de.mpicbg.scicomp
:joblist:0.7
de.mpicbg.scicomp:kutils:0.7
//DEPS de.mpicbg.scicomp
.joblist:joblist-kotlin:1.1
de.mpicbg.scicomp:kutils:0.7
// add docopts to local m2 index
...
...
@@ -7,7 +7,8 @@
// kotlinc-jvm -classpath $(mvncp org.docopt:docopt:0.6.0-SNAPSHOT)
import
de.mpicbg.scicomp.kutils.evalBash
import
joblist.JobConfiguration
import
de.mpicbg.scicomp.kutils.joblist.JobConfig
import
de.mpicbg.scicomp.kutils.joblist.createHtmlReport
import
joblist.JobList
import
org.docopt.Docopt
import
java.io.File
...
...
@@ -131,11 +132,9 @@ for (fastqFile in fastqFiles) {
samtools index ${fastqBaseName}.bam
"""
.
trimIndent
()
// todo provide proper walltime here
// slurm memory limit https://rc.fas.harvard.edu/resources/documentation/slurm-memory/
// sacct -o MaxRSS -j JOBID
jl
.
run
(
JobConfiguration
(
cmd
,
"star__${fastqBaseName}"
,
"10:00"
,
""
,
5
,
40000
,
""
,
better
.
files
.
File
(
File
(
"."
).
toPath
())))
// jl.run(JobConfiguration(cmd, "star__${fastqBaseName}", "", "medium", 5, 0, "", better.files.File(File(".").toPath())))
jl
.
run
(
JobConfig
(
cmd
,
"star__${fastqBaseName}"
,
"10:00"
,
""
,
5
,
40000
))
}
...
...
@@ -145,7 +144,7 @@ jl.waitUntilDone(1000)
// http://lampwww.epfl.ch/~michelou/scala/using-scala-from-java.html
j
oblist
.
`package
$`
.
`MODULE
$`
.
ImplJobListUtils
(
jl
)
.
createHtmlReport
()
j
l
.
createHtmlReport
()
//// estimate expresssion with http://bioinf.wehi.edu.au/featureCounts/
...
...
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