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
6b5fcd52
Commit
6b5fcd52
authored
9 years ago
by
Holger Brandl
Browse files
Options
Downloads
Patches
Plain Diff
rewritten scala utils in kotlin
parent
def09006
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
dge_workflow/star_align.kts
+5
-5
5 additions, 5 deletions
dge_workflow/star_align.kts
with
5 additions
and
5 deletions
dge_workflow/star_align.kts
+
5
−
5
View file @
6b5fcd52
...
...
@@ -7,7 +7,7 @@
import
joblist.JobConfiguration
import
joblist.JobList
import
kutils.
bashEval
import
kutils.
evalBash
import
org.docopt.Docopt
import
java.io.File
...
...
@@ -46,7 +46,7 @@ println("validating inputs...")
// make sure that STAR is in the PATH
if
(
bashEval
(
"which STAR"
).
exitCode
!=
0
)
throw
IllegalArgumentException
(
"STAR aligner is not in PATH"
)
if
(
evalBash
(
"which STAR"
).
exitCode
!=
0
)
throw
IllegalArgumentException
(
"STAR aligner is not in PATH"
)
// check if gtf file exists
...
...
@@ -110,13 +110,13 @@ joblist.`package$`.`MODULE$`.ImplJobListUtils(jl).createHtmlReport()
// cleanup
bashEval
(
"""rm - rf * STARgenome * .Log.progress.out _STARtmp * .SJ.out.tab *Log.out"""
)
evalBash
(
"""rm - rf * STARgenome * .Log.progress.out _STARtmp * .SJ.out.tab *Log.out"""
)
// Test for bam correlation (but don't wait for the results)
bashEval
(
"""
evalBash
(
"""
rend.R - e ${ System.getenv("NGS_TOOLS") } / dge_workflow / star_qc.R.
dge_bam_correlate &
"""
)
// Condense counts into matrix
bashEval
(
"""dge_star_counts2matrix"""
)
evalBash
(
"""dge_star_count
a
s2matrix"""
)
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