Skip to content
Snippets Groups Projects
Commit 77f8dab4 authored by Holger Brandl's avatar Holger Brandl
Browse files

Merge branch 'master' of git.mpi-cbg.de:bioinfo/ngs_tools

parents 5b43501d bfd3043e
No related branches found
No related tags found
No related merge requests found
# Created by .gitignore support plugin (hsz.mobi)
.idea
*.iml
......@@ -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() }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment