nextflow-io / nextflow

A DSL for data-driven computational pipelines
http://nextflow.io
Apache License 2.0
2.71k stars 620 forks source link

Charliecloud and shared cacheDir #3367

Closed l-modolo closed 1 year ago

l-modolo commented 1 year ago

Bug report

Using nextflow with charliecloud.enabled=true with a shared cacheDir on a HPC

Expected behavior and actual behavior

By default the ch-run command uses the result of makeVolumes as default bind (-b) option to bind the full path toward the pipeline working directory where only the root folder of this path is needed.

Steps to reproduce the problem

On my HCP, the .command.run run something like:

ch-run --unset-env="*" -c "$PWD" -w --no-home --set-env --set-env=NXF_DEBUG=${NXF_DEBUG:=0} -b /scratch/Bio/lmodolo/nf-core-rnaseq --bind /Xnfs:/Xnfs /Xnfs/abc/charliecloud_test/img/ubuntu+20.04 -- bash

which returns

ch-run[509187]: error: can't mkdir: /var/tmp/lmodolo.ch/mnt/scratch/Bio: Function not implemented (ch_misc.c:409 38)

the following ch-run command works correctly:

ch-run --unset-env="*" -c "$PWD" -w --no-home --set-env --set-env=NXF_DEBUG=${NXF_DEBUG:=0} -b /scratch --bind /Xnfs:/Xnfs /Xnfs/abc/charliecloud_test/img/ubuntu+20.04 -- bash

Program output

(Copy and paste here output produced by the failing execution. Please highlight it as a code block. Whenever possible upload the .nextflow.log file.)

Environment

Additional context

I would expect the ch-run command to run without the -w tag enabled. -w stand for Mount image read-write (by default, the image is mounted read-only). This is problematic because some artifacts owned by the last user of the image can be created in the shared image cacheDir.

pditommaso commented 1 year ago

Tagging @phue who is the master of Charliecloud support in Nextflow

phue commented 1 year ago

The -w flag is required because of the way bind mounts work. In contrast to singularity for example, there is no overlayfs support in charliecloud. That means the charliecloud runtime calls mkdir to make sure that the path for each nextflow task exists in within the container filesystem tree, which requires write permissions. (See https://github.com/hpc/charliecloud/issues/96)

I agree that this is far from optimal in the context of a shared cache directory, because each user will potentially bind mount many directories, but I'm afraid this cannot be solved in Nextflow. I would suggest opening an issue upstream, maybe the charliecloud developers have an idea how to approach this.

l-modolo commented 1 year ago

Hi @phue ,

Thank you for your answer. I agree with you that the overlayfs support is problematic in charliecloud.

The main problem for me is working with SquashFS images where you cannot mkdir within the image or plain format image where users can mess up the content (and the huge number of files associated with a plain format shared cache of images).

For the --bind option, it seems that charliecloud is fine with binding path to empty folder within the image (no mkdir is required). In my case, we are required to work within a /scratch volume in my HPC, so if the charliecloud image has a empty /scratch folder everything works without the -w option (in SquashFS or plain format). This also work for binding to the /home/ folder or /tmp/ folder that are often empty in charliecloud images (a --bind /scratch:/home or --bind /scratch:/tmp would work).

But this also mean that if I want to bind the /scratch/Bio/lmodolo/nf-pipe/work I must use the option -b /scratch and not the full path. Otherwise charliecloud will try to mkdir the Bio/lmodolo/nf-pipe/work part of the path. Whereas with the -b /scratch will bind the content of /scratch and the content of the Bio folder and therefore give me access to the nextflow work directory within the image.

Do you think that providing the option to enable or disable the -w flag and binding only the first folder of the path to an empty directory in the image could make the process of using charliecloud with nextflow more flexible for HPC ?

phue commented 1 year ago

For the --bind option, it seems that charliecloud is fine with binding path to empty folder within the image (no mkdir is required). In my case, we are required to work within a /scratch volume in my HPC, so if the charliecloud image has a empty /scratch folder everything works without the -w option (in SquashFS or plain format). This also work for binding to the /home/ folder or /tmp/ folder that are often empty in charliecloud images (a --bind /scratch:/home or --bind /scratch:/tmp would work).

That's exactly the point, the empty folder needs to exist in the filesystem tree. This is somewhat guaranteed for standard linux paths such as /home and /tmp, but not for non-standard paths like /scratch. Of course, I you have control over container build-time this is a non-issue, but I would argue that a typical use case is pulling docker images from public registries that do not have such custom path. In these cases, the image has to be writable.

Do you think that providing the option to enable or disable the -w flag and binding only the first folder of the path to an empty directory in the image could make the process of using charliecloud with nextflow more flexible for HPC ?

Yes this could be done with an additional config parameter in the charliecloud scope, in fact the implementations for singularity and docker have such a parameter already (readOnlyInputs).

But it should default to false for the reasons mentioned above

l-modolo commented 1 year ago

Hi @phue,

I finally had time to write the mentioned modification. In addition to the readOnlyInputs = true option, I can now work with SquashFS containers which will make the admin of my cluster happier.

However, during my investigation, I encountered another problem: nextflow try to make concurrent pull of images with charliecloud and throw the following error:

command: ch-image pull -s /Xnfs/abc/charliecloud_test ubuntu:20.04 > /dev/null
  status : 1
  message:
    error: storage directory is already in use
    hint: concurrent instances of ch-image cannot share the same storage directory

This error is expected if different instances of nextflow (or different users) try to pull images in the same storage directory at the same time but not from the execution of one pipeline. I have seen some code with a mutex on line 180 of the CharliecloudCache.groovy file, and I was wondering is the mutex was there to prevent this kind of error (I am not fluent in groovy).

phue commented 1 year ago

This error is expected if different instances of nextflow (or different users) try to pull images in the same storage directory at the same time but not from the execution of one pipeline. I have seen some code with a mutex on line 180 of the CharliecloudCache.groovy file, and I was wondering is the mutex was there to prevent this kind of error (I am not fluent in groovy).

This is tricky, the mutex only handles that case for a single nextflow instance (i.e multiple processes trying to pull the same container at once). For multiple instances/users, I don't think it can be solved in nextflow but rather the error is caused by charlieclouds built-in locking mechanism.

Edit: It's basically this: https://github.com/hpc/charliecloud/issues/1398

charliecloud v0.30 does have a --no-lock flag that could be added to the ch-image pull invocation in CharliecloudCache.groovy. But that seems risky as weird things could happen if multiple instances pull the same container.

l-modolo commented 1 year ago

Ok, the function is clearer now.

I understand that the multiple instances/users is difficult to handle and for me the error is expected in this case.

However, the error I have is when pulling multiple containers for a single process instance (for DSL2 nf-core pipeline with multiple containers for example):

[-        ] process > NFCORE_RNASEQ:RNASEQ:MULTIQC                                                           -
Charliecloud pulling image quay.io/biocontainers/python:3.9--1 [cache /Xnfs/abc/charliecloud_test/img/quay.io%biocontainers%python+3.9--1]
Charliecloud pulling image ubuntu:20.04 [cache /Xnfs/abc/charliecloud_test/img/ubuntu+20.04]
Unexpected thread exception

Unexpected thread exception

Error executing process > 'NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_GTF'

Caused by:
  Charliecloud failed to pull image
  command: ch-image pull -s /Xnfs/abc/charliecloud_test ubuntu:20.04 > /dev/null
  status : 1
  message:
    error: storage directory is already in use
    hint: concurrent instances of ch-image cannot share the same storage directory

In this case nextflow tries to pull quay.io/biocontainers/python:3.9--1 and ubuntu:20.04 concurrently which results in an error for the ubuntu:20.04 pull.

phue commented 1 year ago

As far as I understand, this is because Charliecloud locks the entire (toplevel) storage directory when a container is pulled.

Could you try if the mutex works when changing the filename to something like ${localPath.parent.parent.parent}/.ch-pulling.lock?

l-modolo commented 1 year ago

Now I get the following error:

harliecloud pulling image quay.io/biocontainers/python:3.9--1 [cache /Xnfs/abc/charliecloud_test/img/quay.io%biocontainers%python+3.9--1]
Error executing process > 'NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_GTF'

Caused by:
  java.nio.channels.OverlappingFileLockException
phue commented 1 year ago

I see.. looks like this would break it for a single nextflow instance My JVM knowledge is quite limited, but there is probably a way to make this synchronized somehow, so that there are not multiple threads trying to acquire the same lock. Would you have an idea @pditommaso ?

pditommaso commented 1 year ago

@l-modolo please include the full error stack trace

l-modolo commented 1 year ago

Hi @pditommaso,

Here is the corresponding `.nextflow.log` file ``` Dec-08 09:54:11.343 [main] DEBUG nextflow.cli.Launcher - $> ./nextflow-22.11.0-edge-all run workflow -profile test,psmn --outdir results/ Dec-08 09:54:11.493 [main] INFO nextflow.cli.CmdRun - N E X T F L O W ~ version 22.11.0-edge Dec-08 09:54:11.518 [main] DEBUG nextflow.plugin.PluginsFacade - Setting up plugin manager > mode=prod; embedded=false; plugins-dir=/home/lmodolo/.nextflow/plugins; core-plugins: nf-amazon@1.12.0,nf-azure@0.15.0,nf-codecommit@0.1.2,nf-console@1.0.4,nf-ga4gh@1.0.4,nf-google@1.4.5,nf-tower@1.5.7,nf-wave@0.6.1 Dec-08 09:54:11.584 [main] INFO org.pf4j.DefaultPluginStatusProvider - Enabled plugins: [] Dec-08 09:54:11.587 [main] INFO org.pf4j.DefaultPluginStatusProvider - Disabled plugins: [] Dec-08 09:54:11.608 [main] INFO org.pf4j.DefaultPluginManager - PF4J version 3.4.1 in 'deployment' mode Dec-08 09:54:11.627 [main] INFO org.pf4j.AbstractPluginManager - No plugins Dec-08 09:54:12.925 [main] DEBUG nextflow.config.ConfigBuilder - Found config base: /scratch/Bio/lmodolo/nf-core-rnaseq/workflow/nextflow.config Dec-08 09:54:12.927 [main] DEBUG nextflow.config.ConfigBuilder - Parsing config file: /scratch/Bio/lmodolo/nf-core-rnaseq/workflow/nextflow.config Dec-08 09:54:12.937 [main] DEBUG nextflow.config.ConfigBuilder - Applying config profile: `test,psmn` Dec-08 09:54:14.364 [main] DEBUG nextflow.config.ConfigBuilder - Available config profiles: [cfc_dev, ifb_core, denbi_qbic, genotoul, alice, mjolnir_globe, uppmax, abims, nihbiowulf, nu_genomics, oist, sahmri, mpcdf, leicester, lugh, vsc_ugent, sage, cambridge, unibe_ibu, vai, podman, czbiohub_aws, jax, cheaha, ccga_med, test, tigem, google, computerome, seg_globe, sanger, pasteur, test_full, eddie, medair, azurebatch, bi, hki, bigpurple, sbc_sharc, adcra, crukmi, cedars, docker, gis, psmn, eva, ucl_myriad, utd_ganymede, charliecloud, fgcz, conda, crg, singularity, icr_davros, ceres, munin, rosalind, prince, hasta, hebbe, cfc, utd_sysbio, uzh, debug, genouest, cbe, ebc, ku_sund_dangpu, ccga_dx, crick, marvin, phoenix, gitpod, biohpc_gen, shifter, mana, mamba, awsbatch, uct_hpc, imperial, maestro, aws_tower, binac] Dec-08 09:54:14.413 [main] DEBUG nextflow.cli.CmdRun - Applied DSL=2 from script declararion Dec-08 09:54:14.421 [main] INFO nextflow.cli.CmdRun - Launching `workflow/main.nf` [voluminous_lumiere] DSL2 - revision: 6b989c60f8 Dec-08 09:54:14.422 [main] DEBUG nextflow.plugin.PluginsFacade - Plugins default=[] Dec-08 09:54:14.422 [main] DEBUG nextflow.plugin.PluginsFacade - Plugins resolved requirement=[] Dec-08 09:54:14.438 [main] DEBUG nextflow.secret.LocalSecretsProvider - Secrets store: /home/lmodolo/.nextflow/secrets/store.json Dec-08 09:54:14.442 [main] DEBUG nextflow.secret.SecretsLoader - Discovered secrets providers: [nextflow.secret.LocalSecretsProvider@537ca28e] - activable => nextflow.secret.LocalSecretsProvider@537ca28e Dec-08 09:54:14.519 [main] DEBUG nextflow.Session - Session UUID: d1648492-0046-4716-9c14-0046712e16c7 Dec-08 09:54:14.519 [main] DEBUG nextflow.Session - Run name: voluminous_lumiere Dec-08 09:54:14.519 [main] DEBUG nextflow.Session - Executor pool size: 64 Dec-08 09:54:14.532 [main] DEBUG nextflow.util.ThreadPoolBuilder - Creating thread pool 'FileTransfer' minSize=10; maxSize=192; workQueue=LinkedBlockingQueue[10000]; allowCoreThreadTimeout=false Dec-08 09:54:14.561 [main] DEBUG nextflow.cli.CmdRun - Version: 22.11.0-edge build 5829 Created: 08-12-2022 08:50 UTC (09:50 CEST) System: Linux 5.10.0-19-amd64 Runtime: Groovy 3.0.13 on OpenJDK 64-Bit Server VM 11.0.16+8-post-Debian-1deb11u1 Encoding: UTF-8 (UTF-8) Process: 3159656@m6142comp2.psmn.ens-lyon.fr [172.16.1.133] CPUs: 64 - Mem: 376.6 GB (306.9 GB) - Swap: 0 (0) Dec-08 09:54:14.592 [main] DEBUG nextflow.Session - Work-dir: /scratch/Bio/lmodolo/nf-core-rnaseq/work [fuseblk] Dec-08 09:54:14.636 [main] DEBUG nextflow.executor.ExecutorFactory - Extension executors providers=[GoogleLifeSciencesExecutor, AwsBatchExecutor, GoogleBatchExecutor] Dec-08 09:54:14.680 [main] DEBUG nextflow.Session - Observer factory: DefaultObserverFactory Dec-08 09:54:14.715 [main] DEBUG nextflow.Session - Observer factory: TowerFactory Dec-08 09:54:14.799 [main] DEBUG nextflow.cache.CacheFactory - Using Nextflow cache factory: nextflow.cache.DefaultCacheFactory Dec-08 09:54:14.812 [main] DEBUG nextflow.util.CustomThreadPool - Creating default thread pool > poolSize: 65; maxThreads: 1000 Dec-08 09:54:15.150 [main] DEBUG nextflow.Session - Session start Dec-08 09:54:15.156 [main] DEBUG nextflow.trace.TraceFileObserver - Workflow started -- trace file: /scratch/Bio/lmodolo/nf-core-rnaseq/results/pipeline_info/execution_trace_2022-12-08_09-54-13.txt Dec-08 09:54:15.191 [main] DEBUG nextflow.Session - Using default localLib path: /scratch/Bio/lmodolo/nf-core-rnaseq/workflow/lib Dec-08 09:54:15.197 [main] DEBUG nextflow.Session - Adding to the classpath library: /scratch/Bio/lmodolo/nf-core-rnaseq/workflow/lib Dec-08 09:54:15.197 [main] DEBUG nextflow.Session - Adding to the classpath library: /scratch/Bio/lmodolo/nf-core-rnaseq/workflow/lib/nfcore_external_java_deps.jar Dec-08 09:54:16.375 [main] DEBUG nextflow.script.ScriptRunner - > Launching execution Dec-08 09:54:16.674 [main] WARN nextflow.Nextflow - Found unexpected parameters: * --igenomesIgnore: true Dec-08 09:54:16.675 [main] INFO nextflow.Nextflow - - Ignore this warning: params.schema_ignore_params = "igenomesIgnore"  Dec-08 09:54:16.698 [main] INFO nextflow.Nextflow - ------------------------------------------------------ ,--./,-.  ___ __ __ __ ___ /,-._.--~'  |\ | |__ __ / ` / \ |__) |__ } {  | \| | \__, \__/ | \ |___ \`-._,-`-, `._,._,'  nf-core/rnaseq v3.9 ------------------------------------------------------ Core Nextflow options runName : voluminous_lumiere containerEngine : charliecloud launchDir : /scratch/Bio/lmodolo/nf-core-rnaseq workDir : /scratch/Bio/lmodolo/nf-core-rnaseq/work projectDir : /scratch/Bio/lmodolo/nf-core-rnaseq/workflow userName : lmodolo profile : test,psmn configFiles : /scratch/Bio/lmodolo/nf-core-rnaseq/workflow/nextflow.config Input/output options input : https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/samplesheet/v3.4/samplesheet_test.csv outdir : results/ UMI options umitools_bc_pattern : NNNN umitools_bc_pattern2 : null umitools_umi_separator : null Read filtering options bbsplit_fasta_list : https://github.com/nf-core/test-datasets/raw/rnaseq/reference/bbsplit_fasta_list.txt skip_bbsplit : false Reference genome options fasta : https://github.com/nf-core/test-datasets/raw/rnaseq/reference/genome.fasta gtf : https://github.com/nf-core/test-datasets/raw/rnaseq/reference/genes.gtf.gz gff : https://github.com/nf-core/test-datasets/raw/rnaseq/reference/genes.gff.gz transcript_fasta : https://github.com/nf-core/test-datasets/raw/rnaseq/reference/transcriptome.fasta additional_fasta : https://github.com/nf-core/test-datasets/raw/rnaseq/reference/gfp.fa.gz hisat2_index : https://github.com/nf-core/test-datasets/raw/rnaseq/reference/hisat2.tar.gz rsem_index : https://github.com/nf-core/test-datasets/raw/rnaseq/reference/rsem.tar.gz salmon_index : https://github.com/nf-core/test-datasets/raw/rnaseq/reference/salmon.tar.gz igenomes_ignore : true Alignment options pseudo_aligner : salmon Institutional config options custom_config_base : /scratch/Bio/lmodolo/nf-core-rnaseq/workflow/../configs/ config_profile_name : Test profile config_profile_description: Minimal test dataset to check pipeline function config_profile_contact : Laurent Modolo (@l-modolo) config_profile_url : http://www.ens-lyon.fr/PSMN/doku.php?id=en:accueil Max job request options max_cpus : 2 max_memory : 6.GB max_time : 6.h !! Only displaying parameters that differ from the pipeline defaults !! ------------------------------------------------------ If you use nf-core/rnaseq for your analysis please cite: * The pipeline https://doi.org/10.5281/zenodo.1400710 * The nf-core framework https://doi.org/10.1038/s41587-020-0439-x * Software dependencies https://github.com/nf-core/rnaseq/blob/master/CITATIONS.md ------------------------------------------------------ Dec-08 09:54:18.471 [main] WARN nextflow.Nextflow - ============================================================================= Both '--gtf' and '--gff' parameters have been provided. Using GTF file as priority. =================================================================================== Dec-08 09:54:18.471 [main] WARN nextflow.Nextflow - ============================================================================= '--transcript_fasta' parameter has been provided. Make sure transcript names in this file match those in the GFF/GTF file. Please see: https://github.com/nf-core/rnaseq/issues/753 =================================================================================== Dec-08 09:54:38.417 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_GTF Dec-08 09:54:38.420 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:GUNZIP_.*|MAKE_TRANSCRIPTS_FASTA` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_GTF Dec-08 09:54:38.436 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.437 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.442 [main] DEBUG nextflow.executor.Executor - [warm up] executor > local Dec-08 09:54:38.448 [main] DEBUG n.processor.LocalPollingMonitor - Creating local task monitor for executor 'local' > cpus=64; memory=376.6 GB; capacity=64; pollInterval=100ms; dumpInterval=5m Dec-08 09:54:38.673 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_ADDITIONAL_FASTA Dec-08 09:54:38.674 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:GUNZIP_.*|MAKE_TRANSCRIPTS_FASTA` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_ADDITIONAL_FASTA Dec-08 09:54:38.678 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.678 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.700 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:CAT_ADDITIONAL_FASTA|PREPROCESS_TRANSCRIPTS_FASTA_GENCODE` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:CAT_ADDITIONAL_FASTA Dec-08 09:54:38.703 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.703 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.713 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_low` matches labels `process_low` for process with name NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GTF2BED Dec-08 09:54:38.714 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:GTF2BED` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GTF2BED Dec-08 09:54:38.716 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.716 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.725 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_low` matches labels `process_low` for process with name NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:CUSTOM_GETCHROMSIZES Dec-08 09:54:38.726 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:CUSTOM_GETCHROMSIZES` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:CUSTOM_GETCHROMSIZES Dec-08 09:54:38.727 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.728 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.775 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_high` matches labels `process_high` for process with name NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:BBMAP_BBSPLIT Dec-08 09:54:38.775 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:BBMAP_BBSPLIT` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:BBMAP_BBSPLIT Dec-08 09:54:38.777 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:PREPARE_GENOME:BBMAP_BBSPLIT` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:BBMAP_BBSPLIT Dec-08 09:54:38.779 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.779 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.792 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_high` matches labels `process_high` for process with name NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:STAR_GENOMEGENERATE Dec-08 09:54:38.792 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:UNTAR_.*|STAR_GENOMEGENERATE|STAR_GENOMEGENERATE_IGENOMES|HISAT2_BUILD` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:STAR_GENOMEGENERATE Dec-08 09:54:38.794 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.794 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.805 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:UNTAR_SALMON_INDEX Dec-08 09:54:38.805 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:UNTAR_.*` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:UNTAR_SALMON_INDEX Dec-08 09:54:38.806 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:UNTAR_.*|STAR_GENOMEGENERATE|STAR_GENOMEGENERATE_IGENOMES|HISAT2_BUILD` matches process NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:UNTAR_SALMON_INDEX Dec-08 09:54:38.808 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.808 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.826 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:SAMPLESHEET_CHECK` matches process NFCORE_RNASEQ:RNASEQ:INPUT_CHECK:SAMPLESHEET_CHECK Dec-08 09:54:38.828 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.828 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.848 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:CAT_FASTQ Dec-08 09:54:38.849 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:CAT_FASTQ` matches process NFCORE_RNASEQ:RNASEQ:CAT_FASTQ Dec-08 09:54:38.853 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.853 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.870 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:FASTQC Dec-08 09:54:38.872 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:FASTQC_UMITOOLS_TRIMGALORE:FASTQC` matches process NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:FASTQC Dec-08 09:54:38.874 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.874 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.886 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_high` matches labels `process_high` for process with name NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:TRIMGALORE Dec-08 09:54:38.887 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:FASTQC_UMITOOLS_TRIMGALORE:TRIMGALORE` matches process NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:TRIMGALORE Dec-08 09:54:38.889 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.889 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.915 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:MULTIQC_TSV_FAIL_TRIMMED` matches process NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_FAIL_TRIMMED Dec-08 09:54:38.918 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: local Dec-08 09:54:38.918 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.926 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_high` matches labels `process_high` for process with name NFCORE_RNASEQ:RNASEQ:BBMAP_BBSPLIT Dec-08 09:54:38.927 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:BBMAP_BBSPLIT` matches process NFCORE_RNASEQ:RNASEQ:BBMAP_BBSPLIT Dec-08 09:54:38.929 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.929 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.949 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_high` matches labels `process_high` for process with name NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN Dec-08 09:54:38.951 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:ALIGN_STAR:STAR_ALIGN|.*:ALIGN_STAR:STAR_ALIGN_IGENOMES` matches process NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN Dec-08 09:54:38.953 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.953 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.966 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_SORT Dec-08 09:54:38.968 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:NFCORE_RNASEQ:RNASEQ:.*:BAM_SORT_SAMTOOLS:SAMTOOLS_SORT` matches process NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_SORT Dec-08 09:54:38.970 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.970 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.981 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_low` matches labels `process_low` for process with name NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_INDEX Dec-08 09:54:38.983 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:NFCORE_RNASEQ:RNASEQ:.*:BAM_SORT_SAMTOOLS:SAMTOOLS_INDEX` matches process NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_INDEX Dec-08 09:54:38.984 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:38.984 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:38.997 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS Dec-08 09:54:38.999 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:NFCORE_RNASEQ:RNASEQ:.*:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:.*` matches process NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS Dec-08 09:54:39.000 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.000 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.007 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT Dec-08 09:54:39.009 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:NFCORE_RNASEQ:RNASEQ:.*:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:.*` matches process NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT Dec-08 09:54:39.011 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.011 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.017 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_low` matches labels `process_low` for process with name NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS Dec-08 09:54:39.018 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:NFCORE_RNASEQ:RNASEQ:.*:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:.*` matches process NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS Dec-08 09:54:39.019 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.019 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.031 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_QUANT Dec-08 09:54:39.033 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_STAR_SALMON:SALMON_QUANT` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_QUANT Dec-08 09:54:39.034 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.034 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.042 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_low` matches labels `process_low` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TX2GENE Dec-08 09:54:39.043 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_STAR_SALMON:SALMON_TX2GENE` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TX2GENE Dec-08 09:54:39.044 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.044 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.050 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TXIMPORT Dec-08 09:54:39.051 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_STAR_SALMON:SALMON_TXIMPORT` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TXIMPORT Dec-08 09:54:39.052 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.052 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.059 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE Dec-08 09:54:39.060 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_STAR_SALMON:SALMON_SE_.*` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE Dec-08 09:54:39.061 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.061 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.065 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_LENGTH_SCALED Dec-08 09:54:39.066 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_STAR_SALMON:SALMON_SE_.*` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_LENGTH_SCALED Dec-08 09:54:39.067 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.067 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.070 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_SCALED Dec-08 09:54:39.071 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_STAR_SALMON:SALMON_SE_.*` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_SCALED Dec-08 09:54:39.072 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.072 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.075 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_TRANSCRIPT Dec-08 09:54:39.076 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_STAR_SALMON:SALMON_SE_.*` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_TRANSCRIPT Dec-08 09:54:39.077 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.077 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.082 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_STAR_SALMON Dec-08 09:54:39.083 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:DESEQ2_QC_STAR_SALMON` matches process NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_STAR_SALMON Dec-08 09:54:39.084 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.084 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.100 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:MULTIQC_TSV_FAIL_MAPPED` matches process NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_FAIL_MAPPED Dec-08 09:54:39.101 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: local Dec-08 09:54:39.101 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.106 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single,error_ignore` for process with name NFCORE_RNASEQ:RNASEQ:PRESEQ_LCEXTRAP Dec-08 09:54:39.107 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:error_ignore` matches labels `process_single,error_ignore` for process with name NFCORE_RNASEQ:RNASEQ:PRESEQ_LCEXTRAP Dec-08 09:54:39.107 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:PRESEQ_LCEXTRAP` matches process NFCORE_RNASEQ:RNASEQ:PRESEQ_LCEXTRAP Dec-08 09:54:39.108 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.108 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.117 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:PICARD_MARKDUPLICATES Dec-08 09:54:39.118 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:MARK_DUPLICATES_PICARD:PICARD_MARKDUPLICATES` matches process NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:PICARD_MARKDUPLICATES Dec-08 09:54:39.119 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.119 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.126 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_low` matches labels `process_low` for process with name NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:SAMTOOLS_INDEX Dec-08 09:54:39.127 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:MARK_DUPLICATES_PICARD:SAMTOOLS_INDEX` matches process NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:SAMTOOLS_INDEX Dec-08 09:54:39.128 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.128 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.141 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS Dec-08 09:54:39.142 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:.*` matches process NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS Dec-08 09:54:39.143 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.143 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.150 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT Dec-08 09:54:39.150 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:.*` matches process NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT Dec-08 09:54:39.151 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.151 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.158 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_low` matches labels `process_low` for process with name NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS Dec-08 09:54:39.158 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:.*` matches process NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS Dec-08 09:54:39.159 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.159 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.168 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:STRINGTIE_STRINGTIE Dec-08 09:54:39.169 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:STRINGTIE_STRINGTIE` matches process NFCORE_RNASEQ:RNASEQ:STRINGTIE_STRINGTIE Dec-08 09:54:39.170 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.170 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.191 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:SUBREAD_FEATURECOUNTS Dec-08 09:54:39.192 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:SUBREAD_FEATURECOUNTS` matches process NFCORE_RNASEQ:RNASEQ:SUBREAD_FEATURECOUNTS Dec-08 09:54:39.193 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.193 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.200 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:MULTIQC_CUSTOM_BIOTYPE` matches process NFCORE_RNASEQ:RNASEQ:MULTIQC_CUSTOM_BIOTYPE Dec-08 09:54:39.201 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.201 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.208 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:BEDTOOLS_GENOMECOV Dec-08 09:54:39.208 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:BEDTOOLS_GENOMECOV` matches process NFCORE_RNASEQ:RNASEQ:BEDTOOLS_GENOMECOV Dec-08 09:54:39.209 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.209 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.216 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDCLIP Dec-08 09:54:39.217 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDCLIP` matches process NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDCLIP Dec-08 09:54:39.218 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.218 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.225 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDGRAPHTOBIGWIG Dec-08 09:54:39.225 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDGRAPHTOBIGWIG` matches process NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDGRAPHTOBIGWIG Dec-08 09:54:39.226 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.226 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.233 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDCLIP Dec-08 09:54:39.233 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDCLIP` matches process NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDCLIP Dec-08 09:54:39.234 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.235 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.239 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDGRAPHTOBIGWIG Dec-08 09:54:39.240 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDGRAPHTOBIGWIG` matches process NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDGRAPHTOBIGWIG Dec-08 09:54:39.241 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.241 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.253 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUALIMAP_RNASEQ Dec-08 09:54:39.253 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:QUALIMAP_RNASEQ` matches process NFCORE_RNASEQ:RNASEQ:QUALIMAP_RNASEQ Dec-08 09:54:39.254 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.254 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.261 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_long` matches labels `process_long` for process with name NFCORE_RNASEQ:RNASEQ:DUPRADAR Dec-08 09:54:39.262 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:DUPRADAR` matches process NFCORE_RNASEQ:RNASEQ:DUPRADAR Dec-08 09:54:39.263 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.263 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.271 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_BAMSTAT Dec-08 09:54:39.272 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:RSEQC:RSEQC_BAMSTAT` matches process NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_BAMSTAT Dec-08 09:54:39.272 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.272 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.281 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INNERDISTANCE Dec-08 09:54:39.282 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:RSEQC:RSEQC_INNERDISTANCE` matches process NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INNERDISTANCE Dec-08 09:54:39.283 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.283 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.291 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INFEREXPERIMENT Dec-08 09:54:39.291 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:RSEQC:RSEQC_INFEREXPERIMENT` matches process NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INFEREXPERIMENT Dec-08 09:54:39.292 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.292 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.302 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONANNOTATION Dec-08 09:54:39.302 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:RSEQC:RSEQC_JUNCTIONANNOTATION` matches process NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONANNOTATION Dec-08 09:54:39.303 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.303 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.315 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONSATURATION Dec-08 09:54:39.315 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:RSEQC:RSEQC_JUNCTIONSATURATION` matches process NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONSATURATION Dec-08 09:54:39.316 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.316 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.323 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDISTRIBUTION Dec-08 09:54:39.323 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:RSEQC:RSEQC_READDISTRIBUTION` matches process NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDISTRIBUTION Dec-08 09:54:39.324 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.324 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.334 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDUPLICATION Dec-08 09:54:39.336 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:RSEQC:RSEQC_READDUPLICATION` matches process NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDUPLICATION Dec-08 09:54:39.338 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.338 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.351 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:MULTIQC_TSV_STRAND_CHECK` matches process NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_STRAND_CHECK Dec-08 09:54:39.352 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: local Dec-08 09:54:39.352 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.357 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_QUANT Dec-08 09:54:39.358 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_SALMON:SALMON_QUANT` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_QUANT Dec-08 09:54:39.358 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.358 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.364 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_low` matches labels `process_low` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TX2GENE Dec-08 09:54:39.365 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_SALMON:SALMON_TX2GENE` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TX2GENE Dec-08 09:54:39.365 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.366 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.371 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TXIMPORT Dec-08 09:54:39.371 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_SALMON:SALMON_TXIMPORT` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TXIMPORT Dec-08 09:54:39.372 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.372 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.378 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE Dec-08 09:54:39.379 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_SALMON:SALMON_SE_.*` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE Dec-08 09:54:39.379 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.379 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.384 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_LENGTH_SCALED Dec-08 09:54:39.385 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_SALMON:SALMON_SE_.*` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_LENGTH_SCALED Dec-08 09:54:39.385 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.385 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.389 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_SCALED Dec-08 09:54:39.390 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_SALMON:SALMON_SE_.*` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_SCALED Dec-08 09:54:39.390 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.390 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.394 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_TRANSCRIPT Dec-08 09:54:39.394 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:.*:QUANTIFY_SALMON:SALMON_SE_.*` matches process NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_TRANSCRIPT Dec-08 09:54:39.395 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.395 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.400 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_SALMON Dec-08 09:54:39.400 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:DESEQ2_QC_SALMON` matches process NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_SALMON Dec-08 09:54:39.401 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.401 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.461 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_single` matches labels `process_single` for process with name NFCORE_RNASEQ:RNASEQ:CUSTOM_DUMPSOFTWAREVERSIONS Dec-08 09:54:39.462 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:CUSTOM_DUMPSOFTWAREVERSIONS` matches process NFCORE_RNASEQ:RNASEQ:CUSTOM_DUMPSOFTWAREVERSIONS Dec-08 09:54:39.462 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.463 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.612 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withLabel:process_medium` matches labels `process_medium` for process with name NFCORE_RNASEQ:RNASEQ:MULTIQC Dec-08 09:54:39.613 [main] DEBUG nextflow.script.ProcessConfig - Config settings `withName:MULTIQC` matches process NFCORE_RNASEQ:RNASEQ:MULTIQC Dec-08 09:54:39.614 [main] DEBUG nextflow.executor.ExecutorFactory - << taskConfig executor: null Dec-08 09:54:39.614 [main] DEBUG nextflow.executor.ExecutorFactory - >> processorType: 'local' Dec-08 09:54:39.634 [main] DEBUG nextflow.Session - Workflow process names [dsl2]: DUPRADAR, NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDUPLICATION, RSEM_PREPAREREFERENCE, CAT_ADDITIONAL_FASTA, NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_STAR_SALMON, DESEQ2_QC_SALMON, NFCORE_RNASEQ:RNASEQ:MULTIQC_CUSTOM_BIOTYPE, RSEQC_READDISTRIBUTION, NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:UNTAR_SALMON_INDEX, NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN, NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:SAMTOOLS_INDEX, NFCORE_RNASEQ:RNASEQ:CUSTOM_DUMPSOFTWAREVERSIONS, GFFREAD, RSEQC_JUNCTIONSATURATION, RSEQC_READDUPLICATION, NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_STRAND_CHECK, NFCORE_RNASEQ:RNASEQ:CAT_FASTQ, CAT_FASTQ, GUNZIP, NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:CUSTOM_GETCHROMSIZES, SAMTOOLS_STATS, NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_QUANT, GUNZIP_GFF, NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDGRAPHTOBIGWIG, HISAT2_BUILD, NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_SCALED, NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_BAMSTAT, TRIMGALORE, BEDTOOLS_GENOMECOV, SALMON_TX2GENE, SORTMERNA, NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDCLIP, NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_GTF, NFCORE_RNASEQ:RNASEQ:DUPRADAR, UMITOOLS_PREPAREFORRSEM, NFCORE_RNASEQ:RNASEQ:SUBREAD_FEATURECOUNTS, SAMTOOLS_INDEX, NFCORE_RNASEQ:RNASEQ:BEDTOOLS_GENOMECOV, PRESEQ_LCEXTRAP, FASTQC, NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDGRAPHTOBIGWIG, UCSC_BEDCLIP, NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TXIMPORT, UCSC_BEDGRAPHTOBIGWIG, NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS, MULTIQC, GTF2BED, NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TX2GENE, GUNZIP_GTF, SALMON_INDEX, UMITOOLS_EXTRACT, UNTAR_HISAT2_INDEX, NFCORE_RNASEQ:RNASEQ:INPUT_CHECK:SAMPLESHEET_CHECK, NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE, UNTAR_BBSPLIT_INDEX, NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:BBMAP_BBSPLIT, SAMTOOLS_FLAGSTAT, SAMPLESHEET_CHECK, NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_SCALED, DESEQ2_QC_RSEM, GUNZIP_FASTA, NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS, NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:PICARD_MARKDUPLICATES, RSEM_PREPAREREFERENCE_GENOME, UNTAR_RSEM_INDEX, NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONSATURATION, NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:STAR_GENOMEGENERATE, SALMON_SE_GENE_SCALED, STAR_GENOMEGENERATE_IGENOMES, NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_TRANSCRIPT, SALMON_QUANT, MULTIQC_CUSTOM_BIOTYPE, NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:CAT_ADDITIONAL_FASTA, RSEM_CALCULATEEXPRESSION, DESEQ2_QC_STAR_SALMON, NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_TRANSCRIPT, GUNZIP_TRANSCRIPT_FASTA, MAKE_TRANSCRIPTS_FASTA, NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:FASTQC, MULTIQC_TSV_FAIL_MAPPED, SALMON_SE_GENE_LENGTH_SCALED, DESEQ2_QC, NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_INDEX, PICARD_MARKDUPLICATES, RSEM_MERGE_COUNTS, SALMON_SE_GENE, NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS, NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TX2GENE, UNTAR, NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_FAIL_MAPPED, SALMON_SUMMARIZEDEXPERIMENT, RSEQC_INNERDISTANCE, NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INNERDISTANCE, GTF_GENE_FILTER, RSEQC_BAMSTAT, NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INFEREXPERIMENT, NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_SALMON, QUALIMAP_RNASEQ, RSEQC_INFEREXPERIMENT, NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT, NFCORE_RNASEQ:RNASEQ:STRINGTIE_STRINGTIE, STAR_ALIGN, MULTIQC_TSV_STRAND_CHECK, NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TXIMPORT, NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS, NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_ADDITIONAL_FASTA, RSEQC_JUNCTIONANNOTATION, NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_QUANT, SALMON_TXIMPORT, NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE, CUSTOM_GETCHROMSIZES, STAR_ALIGN_IGENOMES, NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDCLIP, SAMTOOLS_SORT, SUBREAD_FEATURECOUNTS, MULTIQC_TSV_FAIL_TRIMMED, NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT, GUNZIP_GENE_BED, UNTAR_STAR_INDEX, UNTAR_SALMON_INDEX, HISAT2_ALIGN, NFCORE_RNASEQ:RNASEQ:BBMAP_BBSPLIT, NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_SORT, BBMAP_BBSPLIT, NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_LENGTH_SCALED, RSEQC_TIN, MULTIQC_TSV_FROM_LIST, NFCORE_RNASEQ:RNASEQ:QUALIMAP_RNASEQ, UMITOOLS_DEDUP, STRINGTIE_STRINGTIE, HISAT2_EXTRACTSPLICESITES, SALMON_SE_TRANSCRIPT, NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:TRIMGALORE, NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_FAIL_TRIMMED, NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GTF2BED, NFCORE_RNASEQ:RNASEQ:MULTIQC, SAMTOOLS_IDXSTATS, NFCORE_RNASEQ:RNASEQ:PRESEQ_LCEXTRAP, STAR_GENOMEGENERATE, CUSTOM_DUMPSOFTWAREVERSIONS, PREPROCESS_TRANSCRIPTS_FASTA_GENCODE, GUNZIP_ADDITIONAL_FASTA, NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONANNOTATION, NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_LENGTH_SCALED, NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDISTRIBUTION Dec-08 09:54:39.645 [main] DEBUG nextflow.Session - Igniting dataflow network (152) Dec-08 09:54:39.646 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_GTF Dec-08 09:54:39.647 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_ADDITIONAL_FASTA Dec-08 09:54:39.647 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:CAT_ADDITIONAL_FASTA Dec-08 09:54:39.647 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GTF2BED Dec-08 09:54:39.647 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:CUSTOM_GETCHROMSIZES Dec-08 09:54:39.647 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:BBMAP_BBSPLIT Dec-08 09:54:39.647 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:STAR_GENOMEGENERATE Dec-08 09:54:39.647 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:UNTAR_SALMON_INDEX Dec-08 09:54:39.650 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:INPUT_CHECK:SAMPLESHEET_CHECK Dec-08 09:54:39.651 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:CAT_FASTQ Dec-08 09:54:39.653 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:FASTQC Dec-08 09:54:39.653 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:TRIMGALORE Dec-08 09:54:39.653 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_FAIL_TRIMMED Dec-08 09:54:39.653 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:BBMAP_BBSPLIT Dec-08 09:54:39.653 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN Dec-08 09:54:39.654 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_SORT Dec-08 09:54:39.654 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_INDEX Dec-08 09:54:39.654 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS Dec-08 09:54:39.654 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT Dec-08 09:54:39.654 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS Dec-08 09:54:39.654 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_QUANT Dec-08 09:54:39.654 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TX2GENE Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TXIMPORT Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_LENGTH_SCALED Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_SCALED Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_TRANSCRIPT Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_STAR_SALMON Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_FAIL_MAPPED Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:PRESEQ_LCEXTRAP Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:PICARD_MARKDUPLICATES Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:SAMTOOLS_INDEX Dec-08 09:54:39.655 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS Dec-08 09:54:39.658 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT Dec-08 09:54:39.658 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS Dec-08 09:54:39.658 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:STRINGTIE_STRINGTIE Dec-08 09:54:39.658 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:SUBREAD_FEATURECOUNTS Dec-08 09:54:39.658 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MULTIQC_CUSTOM_BIOTYPE Dec-08 09:54:39.658 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:BEDTOOLS_GENOMECOV Dec-08 09:54:39.659 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDCLIP Dec-08 09:54:39.659 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDGRAPHTOBIGWIG Dec-08 09:54:39.660 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDCLIP Dec-08 09:54:39.660 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDGRAPHTOBIGWIG Dec-08 09:54:39.660 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUALIMAP_RNASEQ Dec-08 09:54:39.660 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:DUPRADAR Dec-08 09:54:39.660 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_BAMSTAT Dec-08 09:54:39.660 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INNERDISTANCE Dec-08 09:54:39.660 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INFEREXPERIMENT Dec-08 09:54:39.661 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONANNOTATION Dec-08 09:54:39.661 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONSATURATION Dec-08 09:54:39.661 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDISTRIBUTION Dec-08 09:54:39.661 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDUPLICATION Dec-08 09:54:39.661 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_STRAND_CHECK Dec-08 09:54:39.662 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_QUANT Dec-08 09:54:39.662 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TX2GENE Dec-08 09:54:39.662 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TXIMPORT Dec-08 09:54:39.662 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE Dec-08 09:54:39.662 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_LENGTH_SCALED Dec-08 09:54:39.662 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_SCALED Dec-08 09:54:39.662 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_TRANSCRIPT Dec-08 09:54:39.663 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_SALMON Dec-08 09:54:39.663 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:CUSTOM_DUMPSOFTWAREVERSIONS Dec-08 09:54:39.663 [main] DEBUG nextflow.processor.TaskProcessor - Starting process > NFCORE_RNASEQ:RNASEQ:MULTIQC Dec-08 09:54:39.663 [main] DEBUG nextflow.script.ScriptRunner - > Awaiting termination Dec-08 09:54:39.663 [main] DEBUG nextflow.Session - Session await Dec-08 09:54:39.821 [Actor Thread 58] DEBUG nextflow.sort.BigSort - Sort completed -- entries: 1; slices: 1; internal sort time: 0.002 s; external sort time: 0.015 s; total time: 0.017 s Dec-08 09:54:39.845 [Actor Thread 58] DEBUG nextflow.file.FileCollector - Saved collect-files list to: /tmp/2ed7cfbbdb7ea3875705047810fbdab6.collect-file Dec-08 09:54:39.852 [Actor Thread 58] DEBUG nextflow.file.FileCollector - Deleting file collector temp dir: /tmp/nxf-17752269902664677780 Dec-08 09:54:39.912 [FileTransfer-1] DEBUG nextflow.file.FilePorter - Local cache found for foreign file https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/samplesheet/v3.4/samplesheet_test.csv at /scratch/Bio/lmodolo/nf-core-rnaseq/work/stage/96/ba0b47a1afd65c2ef30b9a06ef751c/samplesheet_test.csv Dec-08 09:54:39.951 [Actor Thread 58] INFO nextflow.container.CharliecloudCache - Charliecloud pulling image quay.io/biocontainers/python:3.9--1 [cache /Xnfs/abc/charliecloud_test/img/quay.io%biocontainers%python+3.9--1] Dec-08 09:54:40.368 [FileTransfer-2] DEBUG nextflow.file.FilePorter - Local cache found for foreign file https://github.com/nf-core/test-datasets/raw/rnaseq/reference/salmon.tar.gz at /scratch/Bio/lmodolo/nf-core-rnaseq/work/stage/63/a3da4da328e152440835cef866ebc8/salmon.tar.gz Dec-08 09:54:40.377 [Actor Thread 59] DEBUG nextflow.processor.TaskProcessor - Handling unexpected condition for task: name=NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:UNTAR_SALMON_INDEX; work-dir=null error [java.lang.IllegalStateException]: java.nio.channels.OverlappingFileLockException Dec-08 09:54:40.395 [Actor Thread 59] ERROR nextflow.processor.TaskProcessor - Error executing process > 'NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:UNTAR_SALMON_INDEX' Caused by: java.nio.channels.OverlappingFileLockException java.lang.IllegalStateException: java.nio.channels.OverlappingFileLockException at nextflow.container.CharliecloudCache.getCachePathFor(CharliecloudCache.groovy:287) at nextflow.container.ContainerHandler.createCharliecloudCache(ContainerHandler.groovy:116) at nextflow.container.ContainerHandler.normalizeImageName(ContainerHandler.groovy:97) at nextflow.container.resolver.DefaultContainerResolver.resolveImage(DefaultContainerResolver.groovy:44) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.runtime.callsite.PlainObjectMetaMethodSite.doInvoke(PlainObjectMetaMethodSite.java:43) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite$PogoCachedMethodSite.invoke(PogoMetaMethodSite.java:170) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite.call(PogoMetaMethodSite.java:73) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:148) at nextflow.processor.TaskRun.memoizedMethodPriv$getContainerInfo0(TaskRun.groovy:602) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at org.codehaus.groovy.runtime.metaclass.ClosureMetaClass.invokeMethod(ClosureMetaClass.java:362) at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.callCurrent(PogoMetaClassSite.java:61) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:176) at nextflow.processor.TaskRun$_closure3.doCall(TaskRun.groovy) at nextflow.processor.TaskRun$_closure3.doCall(TaskRun.groovy) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at org.codehaus.groovy.runtime.metaclass.ClosureMetaClass.invokeMethod(ClosureMetaClass.java:274) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1035) at groovy.lang.Closure.call(Closure.java:412) at org.codehaus.groovy.runtime.memoize.Memoize$MemoizeFunction.lambda$call$0(Memoize.java:137) at org.codehaus.groovy.runtime.memoize.ConcurrentCommonCache.getAndPut(ConcurrentCommonCache.java:137) at org.codehaus.groovy.runtime.memoize.ConcurrentCommonCache.getAndPut(ConcurrentCommonCache.java:113) at org.codehaus.groovy.runtime.memoize.Memoize$MemoizeFunction.call(Memoize.java:136) at groovy.lang.Closure.call(Closure.java:406) at java_util_concurrent_Callable$call.call(Unknown Source) at nextflow.processor.TaskRun.getContainerInfo0(TaskRun.groovy) at nextflow.processor.TaskRun.getContainer(TaskRun.groovy:610) at nextflow.processor.TaskRun.isContainerEnabled(TaskRun.groovy:643) at nextflow.processor.TaskRun$isContainerEnabled$5.call(Unknown Source) at nextflow.processor.TaskProcessor.createTaskHashKey(TaskProcessor.groovy:2041) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.runtime.callsite.PlainObjectMetaMethodSite.doInvoke(PlainObjectMetaMethodSite.java:43) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite$PogoCachedMethodSiteNoUnwrapNoCoerce.invoke(PogoMetaMethodSite.java:193) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite.callCurrent(PogoMetaMethodSite.java:61) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:185) at nextflow.processor.TaskProcessor.invokeTask(TaskProcessor.groovy:604) at nextflow.processor.InvokeTaskAdapter.call(InvokeTaskAdapter.groovy:53) at groovyx.gpars.dataflow.operator.DataflowOperatorActor.startTask(DataflowOperatorActor.java:120) at groovyx.gpars.dataflow.operator.ForkingDataflowOperatorActor.access$001(ForkingDataflowOperatorActor.java:35) at groovyx.gpars.dataflow.operator.ForkingDataflowOperatorActor$1.run(ForkingDataflowOperatorActor.java:58) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) Caused by: java.nio.channels.OverlappingFileLockException: null at java.base/sun.nio.ch.FileLockTable.checkList(FileLockTable.java:229) at java.base/sun.nio.ch.FileLockTable.add(FileLockTable.java:123) at java.base/sun.nio.ch.FileChannelImpl.tryLock(FileChannelImpl.java:1154) at java.base/java.nio.channels.FileChannel.tryLock(FileChannel.java:1165) at nextflow.file.FileMutex.lock(FileMutex.groovy:91) at nextflow.container.CharliecloudCache.downloadCharliecloudImage(CharliecloudCache.groovy:181) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1268) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1035) at org.codehaus.groovy.runtime.InvokerHelper.invokePogoMethod(InvokerHelper.java:1029) at org.codehaus.groovy.runtime.InvokerHelper.invokeMethod(InvokerHelper.java:1012) at org.codehaus.groovy.runtime.InvokerHelper.invokeMethodSafe(InvokerHelper.java:101) at nextflow.container.CharliecloudCache$_getLazyImagePath_closure2.doCall(CharliecloudCache.groovy:264) at nextflow.container.CharliecloudCache$_getLazyImagePath_closure2.call(CharliecloudCache.groovy) at groovyx.gpars.dataflow.LazyDataflowVariable$1.run(LazyDataflowVariable.java:70) ... 3 common frames omitted Dec-08 09:54:40.402 [Actor Thread 59] DEBUG nextflow.Session - Session aborted -- Cause: java.nio.channels.OverlappingFileLockException Dec-08 09:54:40.429 [Actor Thread 59] DEBUG nextflow.Session - The following nodes are still active: [process] NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_GTF status=ACTIVE port 0: (value) bound ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_ADDITIONAL_FASTA status=ACTIVE port 0: (value) bound ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:CAT_ADDITIONAL_FASTA status=ACTIVE port 0: (value) bound ; channel: fasta port 1: (value) OPEN ; channel: gtf port 2: (value) OPEN ; channel: add_fasta port 3: (value) bound ; channel: biotype port 4: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GTF2BED status=ACTIVE port 0: (value) OPEN ; channel: gtf port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:CUSTOM_GETCHROMSIZES status=ACTIVE port 0: (value) OPEN ; channel: fasta port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:BBMAP_BBSPLIT status=ACTIVE port 0: (value) bound ; channel: - port 1: (value) bound ; channel: index port 2: (value) OPEN ; channel: primary_ref port 3: (value) bound ; channel: - port 4: (value) bound ; channel: only_build_index port 5: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:STAR_GENOMEGENERATE status=ACTIVE port 0: (value) OPEN ; channel: fasta port 1: (value) OPEN ; channel: gtf port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:UNTAR_SALMON_INDEX status=ACTIVE port 0: (value) bound ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:INPUT_CHECK:SAMPLESHEET_CHECK status=ACTIVE port 0: (value) bound ; channel: samplesheet port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:CAT_FASTQ status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:FASTQC status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:FASTQC_UMITOOLS_TRIMGALORE:TRIMGALORE status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_FAIL_TRIMMED status=ACTIVE port 0: (value) OPEN ; channel: tsv_data port 1: (value) bound ; channel: header port 2: (value) bound ; channel: out_prefix port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:BBMAP_BBSPLIT status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: index port 2: (value) bound ; channel: primary_ref port 3: (value) bound ; channel: - port 4: (value) bound ; channel: only_build_index port 5: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: index port 2: (value) OPEN ; channel: gtf port 3: (value) bound ; channel: star_ignore_sjdbgtf port 4: (value) bound ; channel: seq_platform port 5: (value) bound ; channel: seq_center port 6: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_SORT status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:SAMTOOLS_INDEX status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) bound ; channel: fasta port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:BAM_SORT_SAMTOOLS:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_QUANT status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) bound ; channel: index port 2: (value) OPEN ; channel: gtf port 3: (value) bound ; channel: transcript_fasta port 4: (value) bound ; channel: alignment_mode port 5: (value) bound ; channel: lib_type port 6: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TX2GENE status=ACTIVE port 0: (value) OPEN ; channel: salmon/* port 1: (value) OPEN ; channel: gtf port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_TXIMPORT status=ACTIVE port 0: (value) OPEN ; channel: salmon/* port 1: (value) OPEN ; channel: tx2gene port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) OPEN ; channel: tpm port 2: (value) OPEN ; channel: tx2gene port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_LENGTH_SCALED status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) OPEN ; channel: tpm port 2: (value) OPEN ; channel: tx2gene port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_GENE_SCALED status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) OPEN ; channel: tpm port 2: (value) OPEN ; channel: tx2gene port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_STAR_SALMON:SALMON_SE_TRANSCRIPT status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) OPEN ; channel: tpm port 2: (value) OPEN ; channel: tx2gene port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_STAR_SALMON status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) bound ; channel: pca_header_multiqc port 2: (value) bound ; channel: clustering_header_multiqc port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_FAIL_MAPPED status=ACTIVE port 0: (value) OPEN ; channel: tsv_data port 1: (value) bound ; channel: header port 2: (value) bound ; channel: out_prefix port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:PRESEQ_LCEXTRAP status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:PICARD_MARKDUPLICATES status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:SAMTOOLS_INDEX status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_STATS status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) bound ; channel: fasta port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_FLAGSTAT status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MARK_DUPLICATES_PICARD:BAM_STATS_SAMTOOLS:SAMTOOLS_IDXSTATS status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:STRINGTIE_STRINGTIE status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: gtf port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:SUBREAD_FEATURECOUNTS status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MULTIQC_CUSTOM_BIOTYPE status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) bound ; channel: header port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:BEDTOOLS_GENOMECOV status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDCLIP status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: sizes port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_FORWARD:UCSC_BEDGRAPHTOBIGWIG status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: sizes port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDCLIP status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: sizes port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:BEDGRAPH_TO_BIGWIG_REVERSE:UCSC_BEDGRAPHTOBIGWIG status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: sizes port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUALIMAP_RNASEQ status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: gtf port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:DUPRADAR status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: gtf port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_BAMSTAT status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INNERDISTANCE status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: bed port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_INFEREXPERIMENT status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: bed port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONANNOTATION status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: bed port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_JUNCTIONSATURATION status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: bed port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDISTRIBUTION status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: bed port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:RSEQC:RSEQC_READDUPLICATION status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MULTIQC_TSV_STRAND_CHECK status=ACTIVE port 0: (value) OPEN ; channel: tsv_data port 1: (value) bound ; channel: header port 2: (value) bound ; channel: out_prefix port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_QUANT status=ACTIVE port 0: (queue) OPEN ; channel: - port 1: (value) OPEN ; channel: index port 2: (value) OPEN ; channel: gtf port 3: (value) bound ; channel: transcript_fasta port 4: (value) bound ; channel: alignment_mode port 5: (value) bound ; channel: lib_type port 6: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TX2GENE status=ACTIVE port 0: (value) OPEN ; channel: salmon/* port 1: (value) OPEN ; channel: gtf port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_TXIMPORT status=ACTIVE port 0: (value) OPEN ; channel: salmon/* port 1: (value) OPEN ; channel: tx2gene port 2: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) OPEN ; channel: tpm port 2: (value) OPEN ; channel: tx2gene port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_LENGTH_SCALED status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) OPEN ; channel: tpm port 2: (value) OPEN ; channel: tx2gene port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_GENE_SCALED status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) OPEN ; channel: tpm port 2: (value) OPEN ; channel: tx2gene port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:QUANTIFY_SALMON:SALMON_SE_TRANSCRIPT status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) OPEN ; channel: tpm port 2: (value) OPEN ; channel: tx2gene port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:DESEQ2_QC_SALMON status=ACTIVE port 0: (value) OPEN ; channel: counts port 1: (value) bound ; channel: pca_header_multiqc port 2: (value) bound ; channel: clustering_header_multiqc port 3: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:CUSTOM_DUMPSOFTWAREVERSIONS status=ACTIVE port 0: (queue) OPEN ; channel: versions port 1: (cntrl) - ; channel: $ [process] NFCORE_RNASEQ:RNASEQ:MULTIQC status=ACTIVE port 0: (value) bound ; channel: multiqc_config port 1: (value) bound ; channel: multiqc_custom_config port 2: (value) OPEN ; channel: software_versions port 3: (queue) OPEN ; channel: workflow_summary port 4: (value) OPEN ; channel: fail_trimming_summary port 5: (value) OPEN ; channel: fail_mapping_summary port 6: (value) OPEN ; channel: fail_strand_check port 7: (value) OPEN ; channel: fastqc/* port 8: (value) OPEN ; channel: trimgalore/fastqc/* port 9: (value) OPEN ; channel: trimgalore/* port 10: (value) bound ; channel: sortmerna/* port 11: (value) OPEN ; channel: star/* port 12: (value) bound ; channel: hisat2/* port 13: (value) bound ; channel: rsem/* port 14: (value) OPEN ; channel: salmon/* port 15: (value) OPEN ; channel: samtools/stats/* port 16: (value) OPEN ; channel: samtools/flagstat/* port 17: (value) OPEN ; channel: samtools/idxstats/* port 18: (value) OPEN ; channel: picard/markduplicates/* port 19: (value) OPEN ; channel: featurecounts/* port 20: (value) OPEN ; channel: deseq2/aligner/* port 21: (value) OPEN ; channel: deseq2/aligner/* port 22: (value) OPEN ; channel: deseq2/pseudoaligner/* port 23: (value) OPEN ; channel: deseq2/pseudoaligner/* port 24: (value) OPEN ; channel: preseq/* port 25: (value) OPEN ; channel: qualimap/* port 26: (value) OPEN ; channel: dupradar/* port 27: (value) OPEN ; channel: rseqc/bam_stat/* port 28: (value) OPEN ; channel: rseqc/infer_experiment/* port 29: (value) OPEN ; channel: rseqc/inner_distance/* port 30: (value) OPEN ; channel: rseqc/junction_annotation/* port 31: (value) OPEN ; channel: rseqc/junction_saturation/* port 32: (value) OPEN ; channel: rseqc/read_distribution/* port 33: (value) OPEN ; channel: rseqc/read_duplication/* port 34: (value) bound ; channel: rseqc/tin/* port 35: (cntrl) - ; channel: $ Dec-08 09:54:40.432 [main] DEBUG nextflow.Session - Session await > all processes finished Dec-08 09:54:40.432 [main] DEBUG nextflow.Session - Session await > all barriers passed Dec-08 09:54:40.441 [Actor Thread 60] ERROR nextflow.util.CustomThreadPool - Unexpected thread exception java.lang.NullPointerException: Cannot get property 'workDirStr' on null object at org.codehaus.groovy.runtime.NullObject.getProperty(NullObject.java:60) at org.codehaus.groovy.runtime.InvokerHelper.getProperty(InvokerHelper.java:194) at org.codehaus.groovy.runtime.callsite.NullCallSite.getProperty(NullCallSite.java:46) at org.codehaus.groovy.runtime.callsite.GetEffectivePogoPropertySite.callGroovyObjectGetProperty(GetEffectivePogoPropertySite.java:65) at nextflow.processor.TaskProcessor.resumeOrDie(TaskProcessor.groovy:971) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.runtime.callsite.PlainObjectMetaMethodSite.doInvoke(PlainObjectMetaMethodSite.java:43) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite$PogoCachedMethodSiteNoUnwrapNoCoerce.invoke(PogoMetaMethodSite.java:193) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite.callCurrent(PogoMetaMethodSite.java:61) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:194) at nextflow.processor.TaskProcessor.handleException(TaskProcessor.groovy:950) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1268) at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.invokeMethodOnCurrentN(ScriptBytecodeAdapter.java:94) at nextflow.processor.TaskProcessor.this$dist$invoke$1(TaskProcessor.groovy) at nextflow.processor.TaskProcessor$TaskProcessorInterceptor.methodMissing(TaskProcessor.groovy) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaClassImpl.invokeMissingMethod(MetaClassImpl.java:953) at groovy.lang.MetaClassImpl.invokePropertyOrMissing(MetaClassImpl.java:1347) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1270) at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.callCurrent(PogoMetaClassSite.java:61) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:194) at nextflow.processor.TaskProcessor$TaskProcessorInterceptor.onException(TaskProcessor.groovy:2409) at groovyx.gpars.dataflow.operator.DataflowProcessor.fireOnException(DataflowProcessor.java:331) at groovyx.gpars.dataflow.operator.DataflowProcessor.reportError(DataflowProcessor.java:293) at groovyx.gpars.dataflow.operator.DataflowProcessorActor.reportException(DataflowProcessorActor.java:125) at groovyx.gpars.dataflow.operator.DataflowProcessorActor.onException(DataflowProcessorActor.java:72) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1268) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1035) at org.codehaus.groovy.runtime.InvokerHelper.invokePojoMethod(InvokerHelper.java:1017) at org.codehaus.groovy.runtime.InvokerHelper.invokeMethod(InvokerHelper.java:1008) at groovyx.gpars.actor.Actor.callDynamic(Actor.java:368) at groovyx.gpars.actor.Actor.handleException(Actor.java:339) at groovyx.gpars.actor.AbstractLoopingActor$1.registerError(AbstractLoopingActor.java:63) at groovyx.gpars.util.AsyncMessagingCore.run(AsyncMessagingCore.java:140) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) Dec-08 09:54:40.439 [Actor Thread 64] ERROR nextflow.util.CustomThreadPool - Unexpected thread exception java.lang.NullPointerException: Cannot get property 'workDirStr' on null object at org.codehaus.groovy.runtime.NullObject.getProperty(NullObject.java:60) at org.codehaus.groovy.runtime.InvokerHelper.getProperty(InvokerHelper.java:194) at org.codehaus.groovy.runtime.callsite.NullCallSite.getProperty(NullCallSite.java:46) at org.codehaus.groovy.runtime.callsite.GetEffectivePogoPropertySite.callGroovyObjectGetProperty(GetEffectivePogoPropertySite.java:65) at nextflow.processor.TaskProcessor.resumeOrDie(TaskProcessor.groovy:971) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.runtime.callsite.PlainObjectMetaMethodSite.doInvoke(PlainObjectMetaMethodSite.java:43) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite$PogoCachedMethodSiteNoUnwrapNoCoerce.invoke(PogoMetaMethodSite.java:193) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite.callCurrent(PogoMetaMethodSite.java:61) at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallCurrent(CallSiteArray.java:51) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite.callCurrent(PogoMetaMethodSite.java:66) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:194) at nextflow.processor.TaskProcessor.handleException(TaskProcessor.groovy:950) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1268) at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.invokeMethodOnCurrentN(ScriptBytecodeAdapter.java:94) at nextflow.processor.TaskProcessor.this$dist$invoke$1(TaskProcessor.groovy) at nextflow.processor.TaskProcessor$TaskProcessorInterceptor.methodMissing(TaskProcessor.groovy) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaClassImpl.invokeMissingMethod(MetaClassImpl.java:953) at groovy.lang.MetaClassImpl.invokePropertyOrMissing(MetaClassImpl.java:1347) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1270) at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.callCurrent(PogoMetaClassSite.java:61) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:194) at nextflow.processor.TaskProcessor$TaskProcessorInterceptor.onException(TaskProcessor.groovy:2409) at groovyx.gpars.dataflow.operator.DataflowProcessor.fireOnException(DataflowProcessor.java:331) at groovyx.gpars.dataflow.operator.DataflowProcessor.reportError(DataflowProcessor.java:293) at groovyx.gpars.dataflow.operator.DataflowProcessorActor.reportException(DataflowProcessorActor.java:125) at groovyx.gpars.dataflow.operator.DataflowProcessorActor.onException(DataflowProcessorActor.java:72) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1268) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1035) at org.codehaus.groovy.runtime.InvokerHelper.invokePojoMethod(InvokerHelper.java:1017) at org.codehaus.groovy.runtime.InvokerHelper.invokeMethod(InvokerHelper.java:1008) at groovyx.gpars.actor.Actor.callDynamic(Actor.java:368) at groovyx.gpars.actor.Actor.handleException(Actor.java:339) at groovyx.gpars.actor.AbstractLoopingActor$1.registerError(AbstractLoopingActor.java:63) at groovyx.gpars.util.AsyncMessagingCore.run(AsyncMessagingCore.java:140) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) Dec-08 09:54:40.441 [Actor Thread 56] ERROR nextflow.util.CustomThreadPool - Unexpected thread exception java.lang.NullPointerException: Cannot get property 'workDirStr' on null object at org.codehaus.groovy.runtime.NullObject.getProperty(NullObject.java:60) at org.codehaus.groovy.runtime.InvokerHelper.getProperty(InvokerHelper.java:194) at org.codehaus.groovy.runtime.callsite.NullCallSite.getProperty(NullCallSite.java:46) at org.codehaus.groovy.runtime.callsite.GetEffectivePogoPropertySite.callGroovyObjectGetProperty(GetEffectivePogoPropertySite.java:65) at nextflow.processor.TaskProcessor.resumeOrDie(TaskProcessor.groovy:971) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.runtime.callsite.PlainObjectMetaMethodSite.doInvoke(PlainObjectMetaMethodSite.java:43) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite$PogoCachedMethodSiteNoUnwrapNoCoerce.invoke(PogoMetaMethodSite.java:193) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite.callCurrent(PogoMetaMethodSite.java:61) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:194) at nextflow.processor.TaskProcessor.handleException(TaskProcessor.groovy:950) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1268) at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.invokeMethodOnCurrentN(ScriptBytecodeAdapter.java:94) at nextflow.processor.TaskProcessor.this$dist$invoke$1(TaskProcessor.groovy) at nextflow.processor.TaskProcessor$TaskProcessorInterceptor.methodMissing(TaskProcessor.groovy) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaClassImpl.invokeMissingMethod(MetaClassImpl.java:953) at groovy.lang.MetaClassImpl.invokePropertyOrMissing(MetaClassImpl.java:1347) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1270) at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.callCurrent(PogoMetaClassSite.java:61) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:194) at nextflow.processor.TaskProcessor$TaskProcessorInterceptor.onException(TaskProcessor.groovy:2409) at groovyx.gpars.dataflow.operator.DataflowProcessor.fireOnException(DataflowProcessor.java:331) at groovyx.gpars.dataflow.operator.DataflowProcessor.reportError(DataflowProcessor.java:293) at groovyx.gpars.dataflow.operator.DataflowProcessorActor.reportException(DataflowProcessorActor.java:125) at groovyx.gpars.dataflow.operator.DataflowProcessorActor.onException(DataflowProcessorActor.java:72) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1268) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1035) at org.codehaus.groovy.runtime.InvokerHelper.invokePojoMethod(InvokerHelper.java:1017) at org.codehaus.groovy.runtime.InvokerHelper.invokeMethod(InvokerHelper.java:1008) at groovyx.gpars.actor.Actor.callDynamic(Actor.java:368) at groovyx.gpars.actor.Actor.handleException(Actor.java:339) at groovyx.gpars.actor.AbstractLoopingActor$1.registerError(AbstractLoopingActor.java:63) at groovyx.gpars.util.AsyncMessagingCore.run(AsyncMessagingCore.java:140) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) Dec-08 09:54:40.445 [main] INFO nextflow.Nextflow - -[nf-core/rnaseq] Pipeline completed with errors- Dec-08 09:54:40.452 [Actor Thread 35] DEBUG nextflow.file.SortFileCollector - FileCollector temp dir not removed: null Dec-08 09:54:40.452 [Actor Thread 57] ERROR nextflow.util.CustomThreadPool - Unexpected thread exception java.lang.NullPointerException: Cannot get property 'workDirStr' on null object at org.codehaus.groovy.runtime.NullObject.getProperty(NullObject.java:60) at org.codehaus.groovy.runtime.InvokerHelper.getProperty(InvokerHelper.java:194) at org.codehaus.groovy.runtime.callsite.NullCallSite.getProperty(NullCallSite.java:46) at org.codehaus.groovy.runtime.callsite.GetEffectivePogoPropertySite.callGroovyObjectGetProperty(GetEffectivePogoPropertySite.java:65) at nextflow.processor.TaskProcessor.resumeOrDie(TaskProcessor.groovy:971) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.runtime.callsite.PlainObjectMetaMethodSite.doInvoke(PlainObjectMetaMethodSite.java:43) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite$PogoCachedMethodSiteNoUnwrapNoCoerce.invoke(PogoMetaMethodSite.java:193) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite.callCurrent(PogoMetaMethodSite.java:61) at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallCurrent(CallSiteArray.java:51) at org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite.callCurrent(PogoMetaMethodSite.java:66) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:194) at nextflow.processor.TaskProcessor.handleException(TaskProcessor.groovy:950) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1268) at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.invokeMethodOnCurrentN(ScriptBytecodeAdapter.java:94) at nextflow.processor.TaskProcessor.this$dist$invoke$1(TaskProcessor.groovy) at nextflow.processor.TaskProcessor$TaskProcessorInterceptor.methodMissing(TaskProcessor.groovy) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaClassImpl.invokeMissingMethod(MetaClassImpl.java:953) at groovy.lang.MetaClassImpl.invokePropertyOrMissing(MetaClassImpl.java:1347) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1270) at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.callCurrent(PogoMetaClassSite.java:61) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:194) at nextflow.processor.TaskProcessor$TaskProcessorInterceptor.onException(TaskProcessor.groovy:2409) at groovyx.gpars.dataflow.operator.DataflowProcessor.fireOnException(DataflowProcessor.java:331) at groovyx.gpars.dataflow.operator.DataflowProcessor.reportError(DataflowProcessor.java:293) at groovyx.gpars.dataflow.operator.DataflowProcessorActor.reportException(DataflowProcessorActor.java:125) at groovyx.gpars.dataflow.operator.DataflowProcessorActor.onException(DataflowProcessorActor.java:72) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:107) at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1268) at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1035) at org.codehaus.groovy.runtime.InvokerHelper.invokePojoMethod(InvokerHelper.java:1017) at org.codehaus.groovy.runtime.InvokerHelper.invokeMethod(InvokerHelper.java:1008) at groovyx.gpars.actor.Actor.callDynamic(Actor.java:368) at groovyx.gpars.actor.Actor.handleException(Actor.java:339) at groovyx.gpars.actor.AbstractLoopingActor$1.registerError(AbstractLoopingActor.java:63) at groovyx.gpars.util.AsyncMessagingCore.run(AsyncMessagingCore.java:140) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) Dec-08 09:54:40.456 [main] DEBUG nextflow.trace.WorkflowStatsObserver - Workflow completed > WorkflowStats[succeededCount=0; failedCount=0; ignoredCount=0; cachedCount=0; pendingCount=0; submittedCount=0; runningCount=0; retriesCount=0; abortedCount=0; succeedDuration=0ms; failedDuration=0ms; cachedDuration=0ms;loadCpus=0; loadMemory=0; peakRunning=0; peakCpus=0; peakMemory=0; ] Dec-08 09:54:40.457 [main] DEBUG nextflow.trace.TraceFileObserver - Workflow completed -- saving trace file Dec-08 09:54:40.459 [main] DEBUG nextflow.trace.ReportObserver - Workflow completed -- rendering execution report Dec-08 09:54:40.460 [main] DEBUG nextflow.trace.ReportObserver - Execution report summary data: [] Dec-08 09:54:40.550 [FileTransfer-3] DEBUG nextflow.file.FilePorter - Local cache found for foreign file https://github.com/nf-core/test-datasets/raw/rnaseq/reference/gfp.fa.gz at /scratch/Bio/lmodolo/nf-core-rnaseq/work/stage/89/287c1914aba71d61b914b3cdf09d34/gfp.fa.gz Dec-08 09:54:40.553 [Actor Thread 53] DEBUG nextflow.processor.TaskProcessor - Handling unexpected condition for task: name=NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_ADDITIONAL_FASTA; work-dir=null error [java.lang.IllegalStateException]: java.nio.channels.OverlappingFileLockException Dec-08 09:54:40.866 [FileTransfer-4] DEBUG nextflow.file.FilePorter - Local cache found for foreign file https://github.com/nf-core/test-datasets/raw/rnaseq/reference/genes.gtf.gz at /scratch/Bio/lmodolo/nf-core-rnaseq/work/stage/91/9aa8eba7e226720d2cb47842807b3d/genes.gtf.gz Dec-08 09:54:40.868 [Actor Thread 49] DEBUG nextflow.processor.TaskProcessor - Handling unexpected condition for task: name=NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:GUNZIP_GTF; work-dir=null error [java.lang.IllegalStateException]: java.nio.channels.OverlappingFileLockException Dec-08 09:54:41.579 [main] DEBUG nextflow.trace.TimelineObserver - Workflow completed -- rendering execution timeline Dec-08 09:54:41.785 [main] DEBUG nextflow.cache.CacheDB - Closing CacheDB done Dec-08 09:54:41.818 [main] DEBUG nextflow.script.ScriptRunner - > Execution complete -- Goodbye ```
pditommaso commented 1 year ago

I have to say I never seen this before. Don't know if it's a problem with the FileMutex implementation of the use made by Charliecloud.

stale[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.