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
3ce7f8c4
Commit
3ce7f8c4
authored
8 years ago
by
Holger Brandl
Browse files
Options
Downloads
Patches
Plain Diff
avoid that _2.fastqs are mapping
parent
49891eaf
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
-0
5 additions, 0 deletions
dge_workflow/star_align.kts
with
5 additions
and
0 deletions
dge_workflow/star_align.kts
+
5
−
0
View file @
3ce7f8c4
...
...
@@ -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