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
77f8dab4
Commit
77f8dab4
authored
8 years ago
by
Holger Brandl
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of git.mpi-cbg.de:bioinfo/ngs_tools
parents
5b43501d
bfd3043e
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
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
dge_workflow/star_align.kts
+5
-0
5 additions, 0 deletions
dge_workflow/star_align.kts
with
6 additions
and
0 deletions
.gitignore
+
1
−
0
View file @
77f8dab4
# Created by .gitignore support plugin (hsz.mobi)
.idea
*.iml
This diff is collapsed.
Click to expand it.
dge_workflow/star_align.kts
+
5
−
0
View file @
77f8dab4
...
...
@@ -73,6 +73,11 @@ fastqFiles.filter { !it.isFile }.let {
require
(
it
.
isEmpty
())
{
"Some fastq files do not exist ${it.map { it.absoluteFile }.joinToString("
,
")}"
}
}
require
(
fastqFiles
.
filter
{
it
.
name
.
contains
(
"_2.fastq"
)
}.
isEmpty
()){
"""Mapping 2nd mate alone is unlikely to have meaningful semantics.
Just provide _1 and star_align.kts will pick up corresponding _2 for PE alignment if present"""
}
println
(
"Running STAR using igenome '${igenome}' for the following files:\n ${fastqFiles.joinToString("
\
n
")}"
)
val
jl
=
JobList
(
".starjobs"
).
apply
{
reset
()
}
...
...
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