1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 06:22:04 +00:00

Apply suggestions from code review

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
This commit is contained in:
Moritz E. Beber 2022-04-03 00:21:09 +02:00 committed by GitHub
parent be93eae640
commit f5baf910be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 8 deletions

View file

@ -159,7 +159,6 @@ if (!params.igenomes_ignore) {
env {
PYTHONNOUSERSITE = '1'
// PYTHONUTF8 = '1' // MetaPhlAn3 may fail with a UnicodeDecodeError if the locale is not set appropriately.
R_PROFILE_USER = "/.Rprofile"
R_ENVIRON_USER = "/.Renviron"
JULIA_DEPOT_PATH = "/usr/local/share/julia"

View file

@ -127,10 +127,3 @@ workflow SHORTREAD_ADAPTERREMOVAL {
mqc = ch_multiqc_files
}
def ensureFastQExtension(row) {
def (meta, read) = row
def filename = file(read.parent).resolve("${read.baseName}.fastq.gz")
read.renameTo(filename.toString())
return [meta, read]
}