From d5c54e49c26c6e056db8752de975660c839b6482 Mon Sep 17 00:00:00 2001 From: zbyosufzai <145053952+zbyosufzai@users.noreply.github.com> Date: Wed, 20 Mar 2024 09:36:06 -0400 Subject: [PATCH 1/4] remove nextflow version --- tutorial_3-methyseq1.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial_3-methyseq1.ipynb b/tutorial_3-methyseq1.ipynb index 05a2973..4877040 100644 --- a/tutorial_3-methyseq1.ipynb +++ b/tutorial_3-methyseq1.ipynb @@ -73,7 +73,7 @@ }, "outputs": [], "source": [ - "! mamba install -c bioconda \"nextflow=22.04\" -y" + "! mamba install -c bioconda \"nextflow\" -y" ] }, { From bcdd55516a2d58af654d828c8e87b32efa9ffe1e Mon Sep 17 00:00:00 2001 From: yosufzaizb Date: Wed, 20 Mar 2024 21:11:29 +0000 Subject: [PATCH 2/4] updates to mamba and nextflow --- docs/human_sperm.config | 7 +- docs/test_LS.config | 2 +- tutorial_1-bismark.ipynb | 90 +- tutorial_2-metilene.ipynb | 43 +- tutorial_3-methyseq1.ipynb | 132 +- tutorial_4-methylseq2.ipynb | 3758 +++++++++++++++++++++++++++++++- tutorial_5-BonusNotebook.ipynb | 10 +- 7 files changed, 3896 insertions(+), 146 deletions(-) diff --git a/docs/human_sperm.config b/docs/human_sperm.config index ff4a553..d732290 100644 --- a/docs/human_sperm.config +++ b/docs/human_sperm.config @@ -3,10 +3,9 @@ profiles{ process.executor = 'google-batch' google.location = 'us-central1' google.region = 'us-central1' - google.project = 'nosi-hawaii-dna-27fa' - workDir = "gs://dna-methyl/methyseq_sperm/work" - params.outdir = "gs://dna-methyl/methyseq_sperm/results" - params.input = 'Tutorial_4/sra_download/*_{1,2}.fastq' + google.project = 'nih-extramural-cl-000110-2' + workDir = "gs://demo-nextflow-bucket/methyseq_sperm/work" + params.outdir = "gs://demo-nextflow-bucket/methyseq_sperm/results" process.machineType = 'c2-standard-16' } } \ No newline at end of file diff --git a/docs/test_LS.config b/docs/test_LS.config index eaf5d27..edaeeff 100644 --- a/docs/test_LS.config +++ b/docs/test_LS.config @@ -10,7 +10,7 @@ profiles{ google { location = 'us-central1' region = 'us-central1' - project = 'nosi-hawaii-dna-27fa' + project = '' } params { outdir = 'gs://demo-nextflow-bucket/test/output' diff --git a/tutorial_1-bismark.ipynb b/tutorial_1-bismark.ipynb index 70cc866..ba6a377 100644 --- a/tutorial_1-bismark.ipynb +++ b/tutorial_1-bismark.ipynb @@ -53,9 +53,12 @@ { "cell_type": "markdown", "id": "a9b2aaca-ac15-4596-9af6-fc05d0df2dd2", - "metadata": {}, + "metadata": { + "tags": [] + }, "source": [ - "**Note**: if conda is NOT installed, we need to install conda first by using the following commands:\n", + "
Note: if conda is NOT installed, we need to install conda first by using the following commands:\n", + " \n", "```bash\n", "! mkdir -p ~/miniconda3\n", "! wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh\n", @@ -63,9 +66,9 @@ "! rm -rf ~/miniconda3/miniconda.sh\n", "! ~/miniconda3/bin/conda init bash\n", "! ~/miniconda3/bin/conda init zsh\n", - "```\n", - "\n", - "It would take less time to install some of the tools in this tutorial if you create a new conda environment. But it is a little bit tricky to use a different conda environment within Jupyter in GCP. You can find instructions of how to create a new conda environment [here](https://github.com/STRIDES/NIHCloudLabGCP/docs/How_to_use_conda_envs_as_kernels.ipynb)." + "``` \n", + "It would take less time to install some of the tools in this tutorial if you create a new conda environment. But it is a little bit tricky to use a different conda environment within Jupyter in GCP. You can find instructions of how to create a new conda environment [here](https://github.com/STRIDES/NIHCloudLabGCP/docs/How_to_use_conda_envs_as_kernels.ipynb).\n", + "
" ] }, { @@ -75,10 +78,10 @@ "source": [ "#### Mamba \n", "\n", - "[**mamba**](https://mamba.readthedocs.io/en/latest/user_guide/mamba.html) is a re-implementation of the conda package manager in C++. It uses the same commands and configuration options as conda . The only difference is that you should still use conda for activation and deactivation. Once conda is installed, we will install `mamba` and use it to install all the tools we are going to use in Tutorial 1 and 2. \n", + "[**mamba**](https://mamba.readthedocs.io/en/latest/user_guide/mamba.html) is a re-implementation of the conda package manager in C++. It uses the same commands and configuration options as conda. The only difference is that you should still use conda for activation and deactivation. Once conda is installed, we will install `mamba` and use it to install all the tools we are going to use in Tutorial 1 and 2. \n", "> **Installation**: conda -> mamba -> other tools\n", "\n", - "The script below installs `mamba` into the 'base' environment from the conda-forge channel. The `-y` flag is used to Sets any confirmation values to 'yes' automatically." + "The script below installs `mamba` via Mambaforge." ] }, { @@ -91,7 +94,22 @@ }, "outputs": [], "source": [ - "! conda install mamba -n base -c conda-forge -y" + "! curl -L -O https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh\n", + "! bash Mambaforge-$(uname)-$(uname -m).sh -b -p $HOME/mambaforge" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "59a0266e-9afa-4695-af55-ece62a3713be", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "#This need to be run at the start of every notebook\n", + "import os\n", + "os.environ[\"PATH\"] += os.pathsep + os.environ[\"HOME\"]+\"/mambaforge/bin\"" ] }, { @@ -161,7 +179,9 @@ "cell_type": "code", "execution_count": null, "id": "775b7955-f05f-4334-9192-807cf464617f", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# Show current working directory\n", @@ -234,7 +254,9 @@ "cell_type": "code", "execution_count": null, "id": "dc94be73-c228-4021-b22f-8e3590f88901", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "! gsutil cp gs://nigms-sandbox/dna-methyl/Mus_musculus.GRCm39.dna.chromosome.6.fa Tutorial_1/ref_genome" @@ -281,7 +303,9 @@ "cell_type": "code", "execution_count": null, "id": "e00a553e-8115-4d52-a9db-9d7c2b5cbcf5", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "from IPython.display import IFrame\n", @@ -499,7 +523,9 @@ "cell_type": "code", "execution_count": null, "id": "5f789349-40ec-4d25-b308-c2772094c549", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "! zcat Tutorial_1/bismark/SRX202087_R1_val_1_bismark_bt2_pe.deduplicated.bedGraph.gz | head -n 10" @@ -509,7 +535,9 @@ "cell_type": "code", "execution_count": null, "id": "ff63dfc6-e0c2-4210-99ed-edd100dab334", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "! zcat Tutorial_1/bismark/SRX202087_R1_val_1_bismark_bt2_pe.deduplicated.bismark.cov.gz | head -n 10" @@ -599,7 +627,9 @@ "cell_type": "code", "execution_count": null, "id": "9cbdcef8-9571-49b3-a540-fd75172bfc02", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "! pip install igv-notebook" @@ -619,7 +649,9 @@ "cell_type": "code", "execution_count": null, "id": "32d5808b-91d7-4d37-88cb-3914f2ae8a20", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "import igv_notebook\n", @@ -694,7 +726,9 @@ "cell_type": "code", "execution_count": null, "id": "24117698-6013-4a55-bd91-dea1a7f8c61e", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "b2 = igv_notebook.Browser(\n", @@ -790,7 +824,9 @@ "cell_type": "code", "execution_count": null, "id": "2c730ddb-5629-4b6d-b587-29978f688212", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# Zoom in to see a specific region in the above browser\n", @@ -820,7 +856,9 @@ "cell_type": "code", "execution_count": null, "id": "3c0f4e59-ffb3-4f80-9adf-ded3e75b4371", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "!pip install jupytercards --quiet\n", @@ -832,7 +870,9 @@ "cell_type": "code", "execution_count": null, "id": "bf2d31cf-03e3-4ef6-970b-8f2ce5446cc9", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "!pip install jupyterquiz==2.0.7 --quiet\n", @@ -876,15 +916,15 @@ ], "metadata": { "environment": { - "kernel": "python3", - "name": "common-cpu.m103", + "kernel": "conda-root-py", + "name": "workbench-notebooks.m118", "type": "gcloud", - "uri": "gcr.io/deeplearning-platform-release/base-cpu:m103" + "uri": "us-docker.pkg.dev/deeplearning-platform-release/gcr.io/workbench-notebooks:m118" }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel) (Local)", "language": "python", - "name": "python3" + "name": "conda-root-py" }, "language_info": { "codemirror_mode": { @@ -896,7 +936,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.12" + "version": "3.10.13" } }, "nbformat": 4, diff --git a/tutorial_2-metilene.ipynb b/tutorial_2-metilene.ipynb index 5a5af80..50ab010 100644 --- a/tutorial_2-metilene.ipynb +++ b/tutorial_2-metilene.ipynb @@ -60,7 +60,9 @@ "cell_type": "code", "execution_count": null, "id": "946bfe1e-7e51-4b45-98be-774f6ea48f4b", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# Create a directory called Tutorial_2\n", @@ -84,7 +86,9 @@ "cell_type": "code", "execution_count": null, "id": "9ddef02c-cc44-43a1-b6aa-36c5a6248de9", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# Sort all the methylation files\n", @@ -110,9 +114,14 @@ "cell_type": "code", "execution_count": null, "id": "d0add508-27f3-40ce-a223-e36266c8693c", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ + "import os\n", + "os.environ[\"PATH\"] += os.pathsep + os.environ[\"HOME\"]+\"/mambaforge/bin\"\n", + "\n", "! metilene_input.pl \\\n", " --in1 Tutorial_2/SRX202087.bedgraph,Tutorial_2/SRX271141.bedgraph \\\n", " --in2 Tutorial_2/SRX202088.bedgraph,Tutorial_2/SRX271142.bedgraph \\\n", @@ -133,7 +142,9 @@ "cell_type": "code", "execution_count": null, "id": "6f9a75b6-5a4b-43f3-8b5b-64334e1ec40d", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "! head -30 Tutorial_2/metilene.input " @@ -239,7 +250,9 @@ "cell_type": "code", "execution_count": null, "id": "e338c101-c784-4058-ba17-6ec73375b18c", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "!metilene_output.pl -q Tutorial_2/metilene_denovo.output -o Tutorial_2/denovo -a serum -b 2i\n", @@ -368,7 +381,9 @@ "cell_type": "code", "execution_count": null, "id": "9947f039-5280-4a07-9097-f15a978e7eb7", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "!pip install jupytercards --quiet\n", @@ -380,7 +395,9 @@ "cell_type": "code", "execution_count": null, "id": "3abc5c18-e21d-4c98-b666-198d622c4d0d", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "!pip install jupyterquiz==2.0.7 --quiet\n", @@ -401,15 +418,15 @@ ], "metadata": { "environment": { - "kernel": "python3", - "name": "common-cpu.m103", + "kernel": "conda-root-py", + "name": "workbench-notebooks.m118", "type": "gcloud", - "uri": "gcr.io/deeplearning-platform-release/base-cpu:m103" + "uri": "us-docker.pkg.dev/deeplearning-platform-release/gcr.io/workbench-notebooks:m118" }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel) (Local)", "language": "python", - "name": "python3" + "name": "conda-root-py" }, "language_info": { "codemirror_mode": { @@ -421,7 +438,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.12" + "version": "3.10.13" } }, "nbformat": 4, diff --git a/tutorial_3-methyseq1.ipynb b/tutorial_3-methyseq1.ipynb index 4877040..bd44056 100644 --- a/tutorial_3-methyseq1.ipynb +++ b/tutorial_3-methyseq1.ipynb @@ -73,7 +73,10 @@ }, "outputs": [], "source": [ - "! mamba install -c bioconda \"nextflow\" -y" + "import os\n", + "os.environ[\"PATH\"] += os.pathsep + os.environ[\"HOME\"]+\"/mambaforge/bin\"\n", + "\n", + "! mamba install -c bioconda nextflow -y" ] }, { @@ -123,7 +126,9 @@ "cell_type": "code", "execution_count": null, "id": "384ab9c6-405b-40a0-85d4-e7eebd401b40", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "! nextflow run docs/hello.nf -work-dir \"Tutorial_3/work\"" @@ -152,7 +157,9 @@ "cell_type": "code", "execution_count": null, "id": "80df2b25-d720-4408-80f7-a0de19dcd72f", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "! nextflow run docs/hello.nf --str \"Good morning!\" -work-dir \"Tutorial_3/work\"" @@ -252,53 +259,78 @@ }, "outputs": [], "source": [ - "! nextflow run nf-core/methylseq -r 1.6.1 --help --outdir \"Tutorial_3/help_dir\" -work-dir \"Tutorial_3/work\"\n", + "! nextflow run nf-core/methylseq -r 2.6.0 --help --outdir \"Tutorial_3/help_dir\" -work-dir \"Tutorial_3/work\"\n", "! rm -rf Tutorial_3/help_dir" ] }, { "cell_type": "markdown", - "id": "16206bbb-aeaf-4fa0-bd2c-5f4eeab95f9b", + "id": "f7ee5940-ead3-45a8-8abe-949024753f60", + "metadata": {}, + "source": [ + "#### Create a samplesheet (located in Tutorial_3) to provide all sample information\n", + "\n", + "**Format:** \n", + "sample, fastq1, fastq2 \n", + "sample1,sample1_R1.fastq.gz,sample1_R2.fastq.gz \n", + "control1,control1_R1.fastq.gz,control1 " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8acefe12-30c8-482a-a806-22c92d902710", "metadata": { "tags": [] }, + "outputs": [], "source": [ - "#### Download the nf-core/methylseq pipeline and test it on a minimal dataset with a single command\n", - "\n", - "This step will download the pipeline and its dependencies in the local compute instance. And then the **test** profile uses a small dataset allowing you to ensure the workflow works with your config file without long run times.\n", - "\n", - "
\n", - " \n", - "Note: output directory should NOT exist yet. If not defined, the default output directory is 'results', and the output directory cannot exist before running the pipeline, or you will get an error message. Remove the output directory if this is not your first time to run it.\n", - "
" + "# Pandas DataFrame by lists of dicts.\n", + "import pandas as pd\n", + " \n", + "# Initialize data to lists.\n", + "data = [{'sample': 'SRX202087_serum', 'fastq_1': 'Tutorial_1/fastq/SRX202087_R1.fastq.gz', 'fastq_2': 'Tutorial_1/fastq/SRX202087_R2.fastq.gz'},\n", + " {'sample': 'SRX202088_2i', 'fastq_1': 'Tutorial_1/fastq/SRX202088_R1.fastq.gz', 'fastq_2': 'Tutorial_1/fastq/SRX202088_R2.fastq.gz'},\n", + " {'sample': 'SRX271141_serum', 'fastq_1': 'Tutorial_1/fastq/SRX271141_R1.fastq.gz', 'fastq_2': 'Tutorial_1/fastq/SRX271141_R2.fastq.gz'},\n", + " {'sample': 'SRX271142_2i', 'fastq_1': 'Tutorial_1/fastq/SRX271142_R1.fastq.gz', 'fastq_2': 'Tutorial_1/fastq/SRX271142_R2.fastq.gz'}]\n", + " \n", + "# Creates DataFrame.\n", + "df = pd.DataFrame(data)\n", + " \n", + "# Print the data\n", + "df" + ] + }, + { + "cell_type": "markdown", + "id": "83b9c1f2-b2f7-43b0-bba1-e90645fada69", + "metadata": {}, + "source": [ + "Export dataframe to CSV file." ] }, { "cell_type": "code", "execution_count": null, - "id": "6a352f5a-7478-4b26-b791-98dabcb9b4fe", + "id": "ccb10e6e-39e9-4ae9-9cc2-aeefe36d3115", "metadata": { - "scrolled": true, "tags": [] }, "outputs": [], "source": [ - "# remove diretory 'Tutorial_3/test_results' if it exists\n", - "! rm -rf Tutorial_3/test_results\n", - "\n", - "# download and test nf-core/methylsesq\n", - "! nextflow run nf-core/methylseq -r 1.6.1 -profile test,docker \\\n", - " --outdir \"Tutorial_3/test_results\" -work-dir \"Tutorial_3/work\"" + "df.to_csv('Tutorial_3/samplesheet.csv', index=False)" ] }, { "cell_type": "markdown", - "id": "14ea3284-ab7e-4e0c-8c87-22ebda46bc5e", - "metadata": {}, + "id": "16206bbb-aeaf-4fa0-bd2c-5f4eeab95f9b", + "metadata": { + "tags": [] + }, "source": [ "
\n", " \n", - "Note: failed process preseq. You may notice that the process preseq fails in this test run. Preseq is used to predict and estimate the complexity of a genomic sequencing library. The preseq process often fails, but it can be ignored since it does not affect the final output files. \n", + "Note: output directory should NOT exist yet. If not defined, the default output directory is 'results', and the output directory cannot exist before running the pipeline, or you will get an error message. Remove the output directory if this is not your first time to run it.\n", "
" ] }, @@ -338,14 +370,25 @@ "source": [ "! rm -rf Tutorial_3/methylseq_results\n", "\n", - "! nextflow run nf-core/methylseq -r 1.6.1 -profile docker -work-dir 'Tutorial_3/work' \\\n", + "! nextflow run nf-core/methylseq -r 2.6.0 -profile docker -work-dir 'Tutorial_3/work' \\\n", " --fasta 'Tutorial_1/ref_genome/Mus_musculus.GRCm39.dna.chromosome.6.fa' \\\n", - " --input 'Tutorial_1/fastq/*_R[1,2].fastq.gz' \\\n", + " --input 'Tutorial_3/samplesheet.csv' \\\n", " --outdir 'Tutorial_3/methylseq_results' \\\n", " --max_cpus 4 \\\n", " --max_memory 12.GB" ] }, + { + "cell_type": "markdown", + "id": "14ea3284-ab7e-4e0c-8c87-22ebda46bc5e", + "metadata": {}, + "source": [ + "
\n", + " \n", + "Note: failed process preseq. You may notice that the process preseq fails in this test run. Preseq is used to predict and estimate the complexity of a genomic sequencing library. The preseq process often fails, but it can be ignored since it does not affect the final output files. \n", + "
" + ] + }, { "cell_type": "markdown", "id": "19fc98ab-09fa-4a4f-a6d9-edbf28c558a6", @@ -361,20 +404,7 @@ "\n", "> \"nf-core/methylseq\n", "\n", - "More detailed explanation can be found in the `Tutorial_3/methyseq_results/pipeline_info/results_description.html`. You might need to use `Ctrl` and click the links inside this HTML to open the web pages in the browser." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3946f703-cf9e-4c1c-a804-e98bce5dad51", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "from IPython.display import IFrame\n", - "IFrame(src='Tutorial_3/methylseq_results/pipeline_info/results_description.html', width=1000, height=400)" + "More detailed explanation can be found in the `Tutorial_3/methyseq_results/pipeline_info`. You might need to press `Trust HTML` at the top of the file or use `Ctrl` and click the links inside this HTML to open the web pages in the browser." ] }, { @@ -398,7 +428,7 @@ "source": [ "# Bismark results from this tutorial - methylseq\n", "from IPython.display import IFrame\n", - "IFrame(src='Tutorial_3/methylseq_results/bismark_summary/bismark_summary_report.html', width=1000, height=400)" + "IFrame(src='Tutorial_3/methylseq_results/bismark/summary/bismark_summary_report.html', width=1000, height=400)" ] }, { @@ -456,7 +486,9 @@ "cell_type": "code", "execution_count": null, "id": "6be3894b-02ce-43f0-9ae7-6f2effc03217", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "!pip install jupytercards --quiet\n", @@ -468,7 +500,9 @@ "cell_type": "code", "execution_count": null, "id": "da539854-858e-46f8-91f8-fdcb3aa157d4", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "!pip install jupyterquiz==2.0.7 --quiet\n", @@ -489,15 +523,15 @@ ], "metadata": { "environment": { - "kernel": "python3", - "name": "common-cpu.m103", + "kernel": "conda-root-py", + "name": "workbench-notebooks.m118", "type": "gcloud", - "uri": "gcr.io/deeplearning-platform-release/base-cpu:m103" + "uri": "us-docker.pkg.dev/deeplearning-platform-release/gcr.io/workbench-notebooks:m118" }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel) (Local)", "language": "python", - "name": "python3" + "name": "conda-root-py" }, "language_info": { "codemirror_mode": { @@ -509,7 +543,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.12" + "version": "3.10.13" } }, "nbformat": 4, diff --git a/tutorial_4-methylseq2.ipynb b/tutorial_4-methylseq2.ipynb index 4276948..c37a3b7 100644 --- a/tutorial_4-methylseq2.ipynb +++ b/tutorial_4-methylseq2.ipynb @@ -5,18 +5,8 @@ "id": "bbe8280a-cc0b-41b1-a18b-3f43131ddb58", "metadata": {}, "source": [ - "# The WGBS data analysis tutorial 4 \n", - "# - run nf-core/methylseq using Google Batch" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "eb7b3123-1e5e-4a46-a26a-3cc1afd95d78", - "metadata": {}, - "outputs": [], - "source": [ - "! ls" + "# The WGBS data analysis tutorial 4 - \n", + "# run nf-core/methylseq using Google Batch" ] }, { @@ -52,7 +42,7 @@ "Before creating a new service account, please check if there is already a Nextflow service account available (`Menu` > `IAM & Admin` > `Service Accounts`). There is no need to create a new one if there is one that already exists. If not, follow the steps below to create one.\n", "\n", "#### Enable APIs \n", - "- Enable the Cloud Life Sciences, Compute Engine, and Cloud Storage APIs by searching each of the GCP products and clicking **`ENABLE`** button (for the whole project, should have already been done in the beginning README.md)\n", + "- Enable the Batch, Compute Engine, Cloud Logging, and Cloud Storage APIs by searching each of the GCP products and clicking **`ENABLE`** button (for the whole project, should have already been done in the beginning README.md)\n", "\n", "#### Create a Nextflow service account \n", "- Click the main navigation menu, go to **IAM & Admin** click **Service Accounts**\n", @@ -64,10 +54,11 @@ "#### Add roles to the service account: \n", "- On the **IAM & Admin** menu click **IAM** then click `edit` next to the Nextflow service account just created\n", "- Add the following roles and click **`SAVE`**: \n", - " - lifesciences.workflowsRunner\n", - " - iam.serviceAccountUser\n", - " - serviceusage.serviceUsageConsumer\n", - " - storage.objectAdmin\n", + " - Service Account User\n", + " - Batch Agent Reporter\n", + " - Storage Admin\n", + " - Storage Object Admin\n", + " - Batch Job Editor\n", "\n", " \n", "\n", @@ -130,6 +121,9 @@ }, "outputs": [], "source": [ + "import os\n", + "os.environ[\"PATH\"] += os.pathsep + os.environ[\"HOME\"]+\"/mambaforge/bin\"\n", + "\n", "! mamba install -c bioconda nextflow -y" ] }, @@ -144,7 +138,7 @@ "```bash\n", "profiles{\n", " gcb{\n", - " google.project = 'nosi-hawaii-dna-27fa'\n", + " google.project = ''\n", " google.location = 'us-central1'\n", " google.region = 'us-central1'\n", " \n", @@ -178,7 +172,7 @@ " google {\n", " location = 'us-central1'\n", " region = 'us-central1'\n", - " project = 'nosi-hawaii-dna-27fa'\n", + " project = ''\n", " }\n", " params {\n", " outdir = 'gs://BUCKET_NAME/output'\n", @@ -215,7 +209,6 @@ "cell_type": "markdown", "id": "1656a114-d2ca-476b-ace8-f0fee93ecb03", "metadata": { - "jp-MarkdownHeadingCollapsed": true, "tags": [] }, "source": [ @@ -242,7 +235,7 @@ " google {\n", " location = 'us-central1'\n", " region = 'us-central1'\n", - " project = 'nosi-hawaii-dna-27fa'\n", + " project = ''\n", " }\n", " params {\n", " outdir = 'gs://dna-methyl/test/results'\n", @@ -254,9 +247,11 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "id": "c24aeed5-5f93-4af1-8c37-e9789aabaf58", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# Create the output directory for this tutorial\n", @@ -265,13 +260,2461 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "id": "68f683b5-62a2-44f6-92c8-f27d46863124", "metadata": { "scrolled": true, "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CAPSULE: Downloading dependency org.multiverse:multiverse-core:jar:0.7.0wait .. Downloading nextflow dependencies. It may require a few seconds, please wait .. 2/3 KB \n", + "CAPSULE: Downloading dependency org.apache.ivy:ivy:jar:2.5.1\n", + "CAPSULE: Downloading dependency org.codehaus.groovy:groovy:jar:3.0.19\n", + "CAPSULE: Downloading dependency commons-io:commons-io:jar:2.11.0\n", + "CAPSULE: Downloading dependency com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava\n", + "CAPSULE: Downloading dependency com.beust:jcommander:jar:1.35\n", + "CAPSULE: Downloading dependency jline:jline:jar:2.9\n", + "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-xml:jar:3.0.19\n", + "CAPSULE: Downloading dependency org.slf4j:log4j-over-slf4j:jar:2.0.7\n", + "CAPSULE: Downloading dependency com.github.zafarkhaja:java-semver:jar:0.9.0\n", + "CAPSULE: Downloading dependency io.nextflow:nf-commons:jar:23.10.1\n", + "CAPSULE: Downloading dependency io.nextflow:nf-httpfs:jar:23.10.1\n", + "CAPSULE: Downloading dependency javax.mail:mail:jar:1.4.7\n", + "CAPSULE: Downloading dependency com.fasterxml.jackson.core:jackson-annotations:jar:2.14.2\n", + "CAPSULE: Downloading dependency org.eclipse.jgit:org.eclipse.jgit:jar:6.5.0.202303070854-r\n", + "CAPSULE: Downloading dependency org.slf4j:slf4j-api:jar:2.0.7\n", + "CAPSULE: Downloading dependency org.iq80.leveldb:leveldb-api:jar:0.12\n", + "CAPSULE: Downloading dependency org.codehaus.gpars:gpars:jar:1.2.1\n", + "CAPSULE: Downloading dependency com.esotericsoftware.kryo:kryo:jar:2.24.0\n", + "CAPSULE: Downloading dependency org.yaml:snakeyaml:jar:2.0\n", + "CAPSULE: Downloading dependency com.google.code.gson:gson:jar:2.10.1\n", + "CAPSULE: Downloading dependency com.google.errorprone:error_prone_annotations:jar:2.11.0\n", + "CAPSULE: Downloading dependency dev.failsafe:failsafe:jar:3.1.0\n", + "CAPSULE: Downloading dependency javax.activation:activation:jar:1.1.1\n", + "CAPSULE: Downloading dependency org.pf4j:pf4j:jar:3.4.1\n", + "CAPSULE: Downloading dependency org.slf4j:jul-to-slf4j:jar:2.0.7\n", + "CAPSULE: Downloading dependency com.fasterxml.jackson.core:jackson-core:jar:2.14.2\n", + "CAPSULE: Downloading dependency com.google.guava:failureaccess:jar:1.0.1\n", + "CAPSULE: Downloading dependency org.pf4j:pf4j-update:jar:2.3.0\n", + "CAPSULE: Downloading dependency com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.14.2\n", + "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-json:jar:3.0.19\n", + "CAPSULE: Downloading dependency org.codehaus.jsr166-mirror:jsr166y:jar:1.7.0\n", + "CAPSULE: Downloading dependency commons-codec:commons-codec:jar:1.15\n", + "CAPSULE: Downloading dependency ch.artecat.grengine:grengine:jar:3.0.0\n", + "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-templates:jar:3.0.19\n", + "CAPSULE: Downloading dependency ch.qos.logback:logback-core:jar:1.4.6\n", + "CAPSULE: Downloading dependency org.slf4j:jcl-over-slf4j:jar:2.0.7\n", + "CAPSULE: Downloading dependency io.nextflow:nextflow:jar:23.10.1\n", + "CAPSULE: Downloading dependency com.google.code.findbugs:jsr305:jar:3.0.2\n", + "CAPSULE: Downloading dependency commons-lang:commons-lang:jar:2.6\n", + "CAPSULE: Downloading dependency org.jsoup:jsoup:jar:1.15.4\n", + "CAPSULE: Downloading dependency com.google.guava:guava:jar:31.1-jre\n", + "CAPSULE: Downloading dependency org.objenesis:objenesis:jar:2.1\n", + "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-yaml:jar:3.0.19\n", + "CAPSULE: Downloading dependency ch.qos.logback:logback-classic:jar:1.4.6\n", + "CAPSULE: Downloading dependency com.google.j2objc:j2objc-annotations:jar:1.3\n", + "CAPSULE: Downloading dependency org.iq80.leveldb:leveldb:jar:0.12\n", + "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-nio:jar:3.0.19\n", + "CAPSULE: Downloading dependency com.googlecode.javaewah:JavaEWAH:jar:1.1.13\n", + "CAPSULE: Downloading dependency com.fasterxml.jackson.core:jackson-databind:jar:2.14.2\n", + "CAPSULE: Downloading dependency org.checkerframework:checker-qual:jar:3.12.0\n", + " \n", + " N E X T F L O W\n", + " version 23.10.1 build 5891\n", + " created 12-01-2024 22:01 UTC \n", + " cite doi:10.1038/nbt.3820\n", + " http://nextflow.io\n", + "\n", + "\n", + "Nextflow installation completed. Please note:\n", + "- the executable file `nextflow` has been created in the folder: /opt/conda/bin\n", + "\n", + "N E X T F L O W ~ version 23.10.1\n", + "Launching `https://github.com/nf-core/methylseq` [dreamy_goodall] DSL2 - revision: 81f989c93e [2.4.0]\n", + "Downloading plugin nf-google@1.8.3\n", + "\n", + "\n", + "-\u001b[2m----------------------------------------------------\u001b[0m-\n", + " \u001b[0;32m,--.\u001b[0;30m/\u001b[0;32m,-.\u001b[0m\n", + "\u001b[0;34m ___ __ __ __ ___ \u001b[0;32m/,-._.--~'\u001b[0m\n", + "\u001b[0;34m |\\ | |__ __ / ` / \\ |__) |__ \u001b[0;33m} {\u001b[0m\n", + "\u001b[0;34m | \\| | \\__, \\__/ | \\ |___ \u001b[0;32m\\`-._,-`-,\u001b[0m\n", + " \u001b[0;32m`._,._,'\u001b[0m\n", + "\u001b[0;35m nf-core/methylseq v2.4.0-g81f989c\u001b[0m\n", + "-\u001b[2m----------------------------------------------------\u001b[0m-\n", + "\u001b[1mCore Nextflow options\u001b[0m\n", + " \u001b[0;34mrevision : \u001b[0;32m2.4.0\u001b[0m\n", + " \u001b[0;34mrunName : \u001b[0;32mdreamy_goodall\u001b[0m\n", + " \u001b[0;34mcontainer : \u001b[0;32mnfcore/methylseq\u001b[0m\n", + " \u001b[0;34mlaunchDir : \u001b[0;32m/home/jupyter/DNA-Methylation-Sequencing-Analysis-with-WGBS\u001b[0m\n", + " \u001b[0;34mworkDir : \u001b[0;32m/test/work\u001b[0m\n", + " \u001b[0;34mprojectDir : \u001b[0;32m/home/jupyter/.nextflow/assets/nf-core/methylseq\u001b[0m\n", + " \u001b[0;34muserName : \u001b[0;32mjupyter\u001b[0m\n", + " \u001b[0;34mprofile : \u001b[0;32mtest,gcb\u001b[0m\n", + " \u001b[0;34mconfigFiles : \u001b[0;32m/home/jupyter/.nextflow/assets/nf-core/methylseq/nextflow.config, /home/jupyter/DNA-Methylation-Sequencing-Analysis-with-WGBS/docs/test_LS.config\u001b[0m\n", + "\n", + "\u001b[1mInput/output options\u001b[0m\n", + " \u001b[0;34minput : \u001b[0;32mhttps://raw.githubusercontent.com/nf-core/test-datasets/methylseq/samplesheet/samplesheet_test.csv\u001b[0m\n", + " \u001b[0;34moutdir : \u001b[0;32mgs://demo-nextflow-bucket/test/output\u001b[0m\n", + "\n", + "\u001b[1mReference genome options\u001b[0m\n", + " \u001b[0;34mfasta : \u001b[0;32mhttps://raw.githubusercontent.com/nf-core/test-datasets/methylseq/reference/genome.fa\u001b[0m\n", + " \u001b[0;34mfasta_index : \u001b[0;32mhttps://raw.githubusercontent.com/nf-core/test-datasets/methylseq/reference/genome.fa.fai\u001b[0m\n", + "\n", + "\u001b[1mGeneric options\u001b[0m\n", + " \u001b[0;34mtracedir : \u001b[0;32mnull/pipeline_info\u001b[0m\n", + "\n", + "\u001b[1mMax job request options\u001b[0m\n", + " \u001b[0;34mmax_cpus : \u001b[0;32m2\u001b[0m\n", + " \u001b[0;34mmax_memory : \u001b[0;32m6 GB\u001b[0m\n", + " \u001b[0;34mmax_time : \u001b[0;32m6h\u001b[0m\n", + "\n", + "\u001b[1mInstitutional config options\u001b[0m\n", + " \u001b[0;34mconfig_profile_name : \u001b[0;32mTest profile\u001b[0m\n", + " \u001b[0;34mconfig_profile_description: \u001b[0;32mMinimal test dataset to check pipeline function\u001b[0m\n", + "\n", + "!! Only displaying parameters that differ from the pipeline defaults !!\n", + "-\u001b[2m----------------------------------------------------\u001b[0m-\n", + "If you use nf-core/methylseq for your analysis please cite:\n", + "\n", + "* The pipeline\n", + " https://doi.org/10.5281/zenodo.1343417\n", + "\n", + "* The nf-core framework\n", + " https://doi.org/10.1038/s41587-020-0439-x\n", + "\n", + "* Software dependencies\n", + " https://github.com/nf-core/methylseq/blob/master/CITATIONS.md\n", + "-\u001b[2m----------------------------------------------------\u001b[0m-\n", + "Uploading local `bin` scripts folder to gs://demo-nextflow-bucket/test/work/tmp/9e/8a721792d400236aa15d37a86e0daa/bin\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[3A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[9A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[15A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[16A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[17A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[17A\n", + "executor > google-batch (1)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (2)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (2)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (2)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (2)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (2)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (2)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (2)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (3)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (4)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[96/a6b6b8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (5)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (6)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (7)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (7)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (7)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (7)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (7)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (7)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (7)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (7)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[96/a6b6b8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (8)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[96/a6b6b8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (8)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (8)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (9)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (9)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (9)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (9)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (10)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (11)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (11)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (11)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (12)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (13)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (13)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (13)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (14)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (14)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (15)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (16)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (16)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (17)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (18)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (18)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (18)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (18)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (19)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (20)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (21)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (21)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (21)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (21)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (21)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (21)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (22)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (22)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (22)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (22)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (22)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (23)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (23)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (24)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (24)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (25)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (25)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[ae/0ca7d8] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (Ecoli_10K_methylated)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[24A\n", + "executor > google-batch (25)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[ae/0ca7d8] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (Ecoli_10K_methylated)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[24A\n", + "executor > google-batch (26)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[ae/0ca7d8] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (Ecoli_10K_methylated)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[24A\n", + "executor > google-batch (26)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[24A\n", + "executor > google-batch (26)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[24A\n", + "executor > google-batch (26)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[19A\n", + "executor > google-batch (26)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3 ✔\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[19A\n", + "executor > google-batch (26)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[19A\n", + "executor > google-batch (26)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (27)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (28)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (28)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (28)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (28)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (28)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (28)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (28)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (29)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (29)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (30)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (31)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (31)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (31)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (31)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (31)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (31)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3 ✔\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (31)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (32)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", + "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (32)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (32)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[21A\n", + "executor > google-batch (32)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (33)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[19A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[19A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[19A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_SUMMARY` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_SUMMARY` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (34)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_SUMMARY` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (35)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_SUMMARY` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (35)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (35)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[K\n", + "\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (35)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (35)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (36)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (36)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (36)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "\u001b[18A\n", + "executor > google-batch (36)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "Waiting for file transfers to complete (2 files)\u001b[K\n", + "\u001b[19A\n", + "executor > google-batch (36)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "Waiting for file transfers to complete (2 files)\u001b[K\n", + "-\u001b[0;35m[nf-core/methylseq]\u001b[0;33m Pipeline completed successfully, but with errored process(es) \u001b[0m-\u001b[K\n", + "\u001b[20A\n", + "executor > google-batch (36)\u001b[K\n", + "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", + "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", + "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", + "Waiting for file transfers to complete (2 files)\u001b[K\n", + "-\u001b[0;35m[nf-core/methylseq]\u001b[0;33m Pipeline completed successfully, but with errored process(es) \u001b[0m-\u001b[K\n", + "\u001b[32;1mCompleted at: 20-Mar-2024 18:46:08\n", + "Duration : 23m 45s\n", + "CPU hours : 0.1 (0.2% failed)\n", + "Succeeded : 33\n", + "Ignored : 3\n", + "Failed : 3\n", + "\u001b[22;39m\u001b[K\n", + "\n" + ] + } + ], "source": [ "! rm -rf Tutorial_4/test\n", "!nextflow self-update\n", @@ -280,9 +2723,11 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "id": "c4600c1c-e6c2-4d00-928b-3c097bcbc564", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# Remove the remote trace file diretory\n", @@ -327,14 +2772,726 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "id": "1314272a-5980-4c46-9217-838de16313d4", "metadata": { "scrolled": true, "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Looking for: [\"sra-tools[version='>2.11']\"]\n", + "\n", + "\u001b[?25l\u001b[2K\u001b[0G[+] 0.0s\n", + "\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.1s\n", + "bioconda/linux-64 \u001b[33m━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\n", + "bioconda/noarch \u001b[33m━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\n", + "conda-forge/linux-64 \u001b[33m━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\n", + "conda-forge/noarch \u001b[90m━━━━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\n", + "pkgs/main/linux-64 \u001b[33m━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gpkgs/main/linux-64 No change\n", + "[+] 0.2s\n", + "bioconda/linux-64 \u001b[33m━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.2s\n", + "bioconda/noarch \u001b[33m━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.2s\n", + "conda-forge/linux-64 \u001b[33m━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.2s\n", + "conda-forge/noarch \u001b[90m━━━━━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.2s\n", + "pkgs/r/noarch \u001b[90m━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gpkgs/r/noarch No change\n", + "[+] 0.3s\n", + "bioconda/linux-64 \u001b[33m━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━\u001b[0m 565.0kB / ??.?MB @ 2.1MB/s 0.3s\n", + "bioconda/noarch \u001b[33m━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━\u001b[0m 85.1kB / ??.?MB @ 315.4kB/s 0.3s\n", + "conda-forge/linux-64 ━╸\u001b[90m━━━━━━━━━━━━━━━━━━━━━\u001b[0m 3.6MB / 33.2MB @ 12.3MB/s 0.3s\n", + "conda-forge/noarch ━╸\u001b[90m━━━━━━━━━━━━━━━━━━━━━\u001b[0m 1.8MB / 14.0MB @ 7.5MB/s 0.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gpkgs/main/noarch No change\n", + "[+] 0.4s\n", + "bioconda/linux-64 \u001b[33m━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━\u001b[0m 888.2kB / ??.?MB @ 2.7MB/s 0.4s\n", + "bioconda/noarch \u001b[33m━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━\u001b[0m 584.4kB / ??.?MB @ 1.7MB/s 0.4s\n", + "conda-forge/linux-64 ━━╸\u001b[90m━━━━━━━━━━━━━━━━━━━━\u001b[0m 5.3MB / 33.2MB @ 14.1MB/s 0.4s\n", + "conda-forge/noarch ━━━━━━━╸\u001b[90m━━━━━━━━━━━━━━━\u001b[0m 5.1MB / 14.0MB @ 12.9MB/s 0.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.5s\n", + "bioconda/linux-64 \u001b[90m╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━\u001b[0m 1.6MB / ??.?MB @ 3.2MB/s 0.5s\n", + "bioconda/noarch \u001b[33m━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━\u001b[0m 927.9kB / ??.?MB @ 2.2MB/s 0.5s\n", + "conda-forge/linux-64 ━━━╸\u001b[90m━━━━━━━━━━━━━━━━━━━\u001b[0m 6.9MB / 33.2MB @ 15.2MB/s 0.5s\n", + "conda-forge/noarch ━━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━\u001b[0m 6.7MB / 14.0MB @ 14.0MB/s 0.5s\n", + "pkgs/r/linux-64 \u001b[90m━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gpkgs/r/linux-64 No change\n", + "[+] 0.6s\n", + "bioconda/linux-64 \u001b[90m━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━\u001b[0m 2.1MB / ??.?MB @ 3.5MB/s 0.6s\n", + "bioconda/noarch \u001b[33m━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━\u001b[0m 1.3MB / ??.?MB @ 2.6MB/s 0.6s\n", + "conda-forge/linux-64 ━━━━╸\u001b[90m━━━━━━━━━━━━━━━━━━\u001b[0m 8.5MB / 33.2MB @ 15.8MB/s 0.6s\n", + "conda-forge/noarch ━━━━━━━━━━━━╸\u001b[90m━━━━━━━━━━\u001b[0m 8.4MB / 14.0MB @ 14.8MB/s 0.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.7s\n", + "bioconda/linux-64 \u001b[90m━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━\u001b[0m 2.1MB / ??.?MB @ 3.5MB/s 0.7s\n", + "bioconda/noarch \u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━\u001b[0m 1.7MB / ??.?MB @ 2.9MB/s 0.7s\n", + "conda-forge/linux-64 ━━━━━╸\u001b[90m━━━━━━━━━━━━━━━━━\u001b[0m 10.1MB / 33.2MB @ 15.4MB/s 0.7s\n", + "conda-forge/noarch ━━━━━━━━━━━━━━━╸\u001b[90m━━━━━━━\u001b[0m 10.0MB / 14.0MB @ 14.4MB/s 0.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.8s\n", + "bioconda/linux-64 \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 2.6MB / ??.?MB @ 3.6MB/s 0.8s\n", + "bioconda/noarch \u001b[90m╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━\u001b[0m 2.2MB / ??.?MB @ 3.0MB/s 0.8s\n", + "conda-forge/linux-64 ━━━━━━━╸\u001b[90m━━━━━━━━━━━━━━━\u001b[0m 11.8MB / 33.2MB @ 15.1MB/s 0.8s\n", + "conda-forge/noarch ━━━━━━━━━━━━━━━╸\u001b[90m━━━━━━━\u001b[0m 10.0MB / 14.0MB @ 14.4MB/s 0.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.9s\n", + "bioconda/linux-64 \u001b[90m━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 3.0MB / ??.?MB @ 3.6MB/s 0.9s\n", + "bioconda/noarch \u001b[90m━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━\u001b[0m 2.6MB / ??.?MB @ 3.0MB/s 0.9s\n", + "conda-forge/linux-64 ━━━━━━━╸\u001b[90m━━━━━━━━━━━━━━━\u001b[0m 11.8MB / 33.2MB @ 15.1MB/s 0.9s\n", + "conda-forge/noarch ━━━━━━━━━━━━━━━━━━╸\u001b[90m━━━━\u001b[0m 11.6MB / 14.0MB @ 14.1MB/s 0.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.0s\n", + "bioconda/linux-64 \u001b[90m━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━\u001b[0m 3.6MB / ??.?MB @ 3.7MB/s 1.0s\n", + "bioconda/noarch \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 3.0MB / ??.?MB @ 3.1MB/s 1.0s\n", + "conda-forge/linux-64 ━━━━━━━━╸\u001b[90m━━━━━━━━━━━━━━\u001b[0m 13.4MB / 33.2MB @ 14.8MB/s 1.0s\n", + "conda-forge/noarch ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 13.2MB / 14.0MB @ 14.1MB/s 1.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.1s\n", + "bioconda/linux-64 \u001b[90m━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━\u001b[0m 3.6MB / ??.?MB @ 3.7MB/s 1.1s\n", + "bioconda/noarch \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 3.0MB / ??.?MB @ 3.1MB/s 1.1s\n", + "conda-forge/linux-64 ━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━━\u001b[0m 15.0MB / 33.2MB @ 14.7MB/s 1.1s\n", + "conda-forge/noarch ━━━━━━━━━━━━━━━━━━━━━━━ 14.0MB / 14.0MB @ 13.4MB/s 1.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.2s\n", + "bioconda/linux-64 \u001b[90m━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━\u001b[0m 3.6MB / ??.?MB @ 3.7MB/s 1.2s\n", + "bioconda/noarch \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 3.0MB / ??.?MB @ 3.1MB/s 1.2s\n", + "conda-forge/linux-64 ━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━━\u001b[0m 15.0MB / 33.2MB @ 14.7MB/s 1.2s\n", + "conda-forge/noarch ━━━━━━━━━━━━━━━━━━━━━━━ 14.0MB / 14.0MB @ 13.4MB/s 1.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.3s\n", + "bioconda/linux-64 \u001b[90m━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━\u001b[0m 3.6MB / ??.?MB @ 3.7MB/s 1.3s\n", + "bioconda/noarch \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 3.0MB / ??.?MB @ 3.1MB/s 1.3s\n", + "conda-forge/linux-64 ━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━━\u001b[0m 15.0MB / 33.2MB @ 14.7MB/s 1.3s\n", + "conda-forge/noarch ━━━━━━━━━━━━━━━━━━━━━━━ 14.0MB / 14.0MB @ 13.4MB/s 1.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gconda-forge/noarch 14.0MB @ 13.4MB/s 1.3s\n", + "[+] 1.4s\n", + "bioconda/linux-64 \u001b[90m━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━━\u001b[0m 4.0MB / ??.?MB @ 3.1MB/s 1.4s\n", + "bioconda/noarch \u001b[90m━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━\u001b[0m 3.5MB / ??.?MB @ 2.6MB/s 1.4s\n", + "conda-forge/linux-64 ━━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━\u001b[0m 16.7MB / 33.2MB @ 12.0MB/s 1.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.5s\n", + "bioconda/linux-64 \u001b[90m━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━\u001b[0m 5.0MB / ??.?MB @ 3.4MB/s 1.5s\n", + "bioconda/noarch \u001b[90m━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 4.0MB / ??.?MB @ 2.8MB/s 1.5s\n", + "conda-forge/linux-64 ━━━━━━━━━━━╸\u001b[90m━━━━━━━━━━━\u001b[0m 18.3MB / 33.2MB @ 12.5MB/s 1.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.6s\n", + "bioconda/linux-64 \u001b[90m━━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━\u001b[0m 5.3MB / ??.?MB @ 3.4MB/s 1.6s\n", + "bioconda/noarch \u001b[90m━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━\u001b[0m 4.9MB / ??.?MB @ 3.1MB/s 1.6s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━╸\u001b[90m━━━━━━━━━━\u001b[0m 19.9MB / 33.2MB @ 12.9MB/s 1.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gbioconda/linux-64 5.3MB @ 3.4MB/s 1.7s\n", + "[+] 1.7s\n", + "bioconda/noarch \u001b[90m━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━\u001b[0m 5.2MB / ??.?MB @ 3.0MB/s 1.7s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━╸\u001b[90m━━━━━━━━━\u001b[0m 21.6MB / 33.2MB @ 13.3MB/s 1.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.8s\n", + "bioconda/noarch \u001b[90m━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━\u001b[0m 5.2MB / ??.?MB @ 3.0MB/s 1.8s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━╸\u001b[90m━━━━━━━━\u001b[0m 23.2MB / 33.2MB @ 13.3MB/s 1.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gbioconda/noarch 5.2MB @ 3.0MB/s 1.8s\n", + "[+] 1.9s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━╸\u001b[90m━━━━━━\u001b[0m 24.8MB / 33.2MB @ 13.3MB/s 1.9s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.0s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━╸\u001b[90m━━━━\u001b[0m 28.1MB / 33.2MB @ 14.4MB/s 2.0s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.1s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.1s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.2s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.2s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.3s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.3s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.4s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.4s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.5s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.5s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.6s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.6s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.7s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.7s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.8s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.8s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.9s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.9s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.0s\n", + "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 3.0s\u001b[2K\u001b[1A\u001b[2K\u001b[0Gconda-forge/linux-64 33.2MB @ 16.0MB/s 3.0s\n", + "\u001b[?25h\n", + "Pinned packages:\n", + " - python 3.10.*\n", + "\n", + "\n", + "Transaction\n", + "\n", + " Prefix: /opt/conda\n", + "\n", + " Updating specs:\n", + "\n", + " - sra-tools[version='>2.11']\n", + " - ca-certificates\n", + " - certifi\n", + " - openssl\n", + "\n", + "\n", + " Package Version Build Channel Size\n", + "───────────────────────────────────────────────────────────────────────────────────\n", + " Install:\n", + "───────────────────────────────────────────────────────────────────────────────────\n", + "\n", + " \u001b[32m+ ossuuid \u001b[0m 1.6.2 hf484d3e_1000 conda-forge 57kB\n", + " \u001b[32m+ perl-threaded \u001b[0m 5.32.1 hdfd78af_1 bioconda 6kB\n", + " \u001b[32m+ perl-uri \u001b[0m 1.71 0 bioconda 38kB\n", + " \u001b[32m+ perl-xml-sax-base \u001b[0m 1.08 0 bioconda 13kB\n", + " \u001b[32m+ perl-xml-namespacesupport\u001b[0m 1.11 0 bioconda 6kB\n", + " \u001b[32m+ perl-xml-sax \u001b[0m 0.99 0 bioconda 25kB\n", + " \u001b[32m+ perl-xml-libxml \u001b[0m 2.0124 0 bioconda 220kB\n", + " \u001b[32m+ ncbi-vdb \u001b[0m 3.1.0 hdbdd923_0 bioconda 11MB\n", + " \u001b[32m+ sra-tools \u001b[0m 3.1.0 h9f5acd7_0 bioconda 79MB\n", + "\n", + " Downgrade:\n", + "───────────────────────────────────────────────────────────────────────────────────\n", + "\n", + " \u001b[31m- perl \u001b[0m 5.32.1 7_hd590300_perl5 conda-forge\u001b[32m Cached\u001b[0m\n", + " \u001b[32m+ perl \u001b[0m 5.22.2.1 0 conda-forge 16MB\n", + "\n", + " Summary:\n", + "\n", + " Install: 9 packages\n", + " Downgrade: 1 packages\n", + "\n", + " Total download: 106MB\n", + "\n", + "───────────────────────────────────────────────────────────────────────────────────\n", + "\n", + "\n", + "\u001b[?25l\u001b[2K\u001b[0G[+] 0.0s\n", + "Downloading \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 0.0 B 0.0s\n", + "Extracting \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 0 0.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.1s\n", + "Downloading (5) \u001b[33m━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━━━━━━━━\u001b[0m 0.0 B ossuuid 0.0s\n", + "Extracting \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 0 0.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gperl-threaded 5.5kB @ 47.1kB/s 0.1s\n", + "ossuuid 56.9kB @ 410.7kB/s 0.1s\n", + "perl-uri 37.7kB @ 219.0kB/s 0.2s\n", + "perl-xml-sax-base 12.9kB @ 74.3kB/s 0.2s\n", + "perl-xml-namespacesupport 6.4kB @ 37.0kB/s 0.1s\n", + "[+] 0.2s\n", + "Downloading (5) \u001b[33m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 556.6kB ncbi-vdb 0.1s\n", + "Extracting (5) \u001b[90m━━━━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━\u001b[0m 0 ossuuid 0.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gperl-xml-sax 24.7kB @ 107.2kB/s 0.1s\n", + "[+] 0.3s\n", + "Downloading (4) \u001b[33m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 1.9MB ncbi-vdb 0.2s\n", + "Extracting (4) ━━━╸\u001b[33m━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━\u001b[0m 2 perl-uri 0.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gperl-xml-libxml 219.6kB @ 623.7kB/s 0.2s\n", + "[+] 0.4s\n", + "Downloading (3) ━╸\u001b[33m━━━━━━━━━━━━━━━━━━━━━\u001b[0m 10.3MB ncbi-vdb 0.3s\n", + "Extracting (1) ━━━━━━━━━━━━╸\u001b[33m━━━╸\u001b[0m\u001b[90m━━━━━━\u001b[0m 6 perl-xml-libxml 0.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gncbi-vdb 11.1MB @ 25.0MB/s 0.3s\n", + "perl 15.7MB @ 33.7MB/s 0.5s\n", + "[+] 0.5s\n", + "Downloading (1) ━━━━━━━╸\u001b[33m━━━━━━━━━━━━━━━\u001b[0m 38.3MB sra-tools 0.4s\n", + "Extracting (3) ━━━━━━━━━━━━╸\u001b[33m━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 6 perl-xml-libxml 0.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.6s\n", + "Downloading (1) ━━━━━━━━╸\u001b[33m━━━━━━━━━━━━━━\u001b[0m 45.1MB sra-tools 0.5s\n", + "Extracting (3) ━━━━━━━━━━━━╸\u001b[33m━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 6 perl-xml-libxml 0.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.7s\n", + "Downloading (1) ━━━━━━━━━━╸\u001b[33m━━━━━━━━━━━━\u001b[0m 54.6MB sra-tools 0.6s\n", + "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 ncbi-vdb 0.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.8s\n", + "Downloading (1) ━━━━━━━━━━━╸\u001b[33m━━━━━━━━━━━\u001b[0m 59.9MB sra-tools 0.7s\n", + "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 ncbi-vdb 0.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.9s\n", + "Downloading (1) ━━━━━━━━━━━━━╸\u001b[33m━━━━━━━━━\u001b[0m 66.8MB sra-tools 0.8s\n", + "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 ncbi-vdb 0.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.0s\n", + "Downloading (1) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 78.3MB sra-tools 0.9s\n", + "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 ncbi-vdb 0.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.1s\n", + "Downloading (1) ━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━\u001b[0m 83.4MB sra-tools 1.0s\n", + "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 perl 0.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.2s\n", + "Downloading (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 95.6MB sra-tools 1.1s\n", + "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 perl 1.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gsra-tools 78.7MB @ 61.3MB/s 1.1s\n", + "[+] 1.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 1.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 1.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 1.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 1.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 1.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 1.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 1.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 1.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 1.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 2.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 2.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 2.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 2.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 2.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 2.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 2.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 2.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 2.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 2.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 3.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 3.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 3.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 3.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 3.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 3.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 3.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 3.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 3.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 3.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 5.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 5.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 5.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 5.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 7.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.3s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.4s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.5s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.6s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.7s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.8s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.9s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 27.0s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 27.1s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 27.2s\n", + "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", + "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 27.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G\u001b[?25h\n", + "Downloading and Extracting Packages:\n", + "\n", + "Preparing transaction: done\n", + "Verifying transaction: done\n", + "Executing transaction: done\n" + ] + } + ], "source": [ + "import os\n", + "os.environ[\"PATH\"] += os.pathsep + os.environ[\"HOME\"]+\"/mambaforge/bin\"\n", + "\n", "! mamba install -c bioconda \"sra-tools > 2.11\" -y" ] }, @@ -357,15 +3514,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "id": "04e74cb8-1ffc-484f-8b26-4c11703cbc66", "metadata": { "scrolled": true, "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "gzip: compressed data not written to a terminal. Use -f to force compression.\n", + "For help, type: gzip -h\n", + "2024-03-20T19:41:00 fasterq-dump.3.1.0 err: param unknown while parsing argument list within application support module - Unknown argument '--gz'\n", + "2024-03-20T19:41:00 fasterq-dump.3.1.0 err: ArgsMakeAndHandle() -> RC(rcApp,rcArgv,rcParsing,rcParam,rcUnknown)\n", + "fasterq-dump quit with error code 3\n" + ] + } + ], "source": [ - "! fasterq-dump --threads 4 --progress SRR306435 SRR033942 -O Tutorial_4/sra_download" + "! fasterq-dump --threads 4 --gz --progress SRR306435 SRR033942 -O Tutorial_4/sra_download" ] }, { @@ -378,25 +3547,171 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "id": "3ab5a465-a3a7-4968-84c4-f6d7bed30dee", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "! rm -rf fasterq.tmp.*" ] }, + { + "cell_type": "markdown", + "id": "6152126a-9c1a-4eff-a8ea-e51f45bb9a44", + "metadata": {}, + "source": [ + "Compress the files." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "8efc1fcd-7496-4186-9b36-94678283e877", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "!pigz Tutorial_4/sra_download/SRR*" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4873545a-43be-4390-82f1-4f5acf24eac2", + "metadata": {}, + "outputs": [], + "source": [ + "!pigz" + ] + }, + { + "cell_type": "markdown", + "id": "1775f2b8-83a4-4e96-aa6b-64108377f22e", + "metadata": {}, + "source": [ + "#### Create a samplesheet (located in Tutorial_3) to provide all sample information\n", + "\n", + "**Format:** \n", + "sample, fastq1, fastq2 \n", + "sample1,sample1_R1.fastq,sample1_R2.fastq \n", + "control1,control1_R1.fastq,control1 " + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "27799ac8-6fd2-4c2e-abb6-af9c81bbef57", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
samplefastq_1fastq_2
0SRR033942Tutorial_4/sra_download/SRR033942_1.fastq.gzTutorial_4/sra_download/SRR033942_2.fastq.gz
1SRR306435Tutorial_4/sra_download/SRR306435_1.fastq.gzTutorial_4/sra_download/SRR306435_2.fastq.gz
\n", + "
" + ], + "text/plain": [ + " sample fastq_1 \\\n", + "0 SRR033942 Tutorial_4/sra_download/SRR033942_1.fastq.gz \n", + "1 SRR306435 Tutorial_4/sra_download/SRR306435_1.fastq.gz \n", + "\n", + " fastq_2 \n", + "0 Tutorial_4/sra_download/SRR033942_2.fastq.gz \n", + "1 Tutorial_4/sra_download/SRR306435_2.fastq.gz " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Pandas DataFrame by lists of dicts.\n", + "import pandas as pd\n", + " \n", + "# Initialize data to lists.\n", + "samples = [{'sample': 'SRR033942', 'fastq_1': 'Tutorial_4/sra_download/SRR033942_1.fastq.gz', 'fastq_2': 'Tutorial_4/sra_download/SRR033942_2.fastq.gz'},\n", + " {'sample': 'SRR306435', 'fastq_1': 'Tutorial_4/sra_download/SRR306435_1.fastq.gz', 'fastq_2': 'Tutorial_4/sra_download/SRR306435_2.fastq.gz'}\n", + " ]\n", + " \n", + "# Creates DataFrame.\n", + "df2 = pd.DataFrame(samples)\n", + " \n", + "# Print the data\n", + "df2" + ] + }, + { + "cell_type": "markdown", + "id": "1e7b35d6-c886-410f-a040-371d26c4c3e0", + "metadata": {}, + "source": [ + "Export dataframe to CSV file." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "fa9bf795-bdd9-486e-ae8e-2ae4fa6c25df", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "df2.to_csv('Tutorial_4/samplesheet.csv', index=False)" + ] + }, { "cell_type": "markdown", "id": "c436deda-9341-40db-9af1-b760478cee08", "metadata": { - "jp-MarkdownHeadingCollapsed": true, "tags": [] }, "source": [ "#### Create/Modify the config file \n", "\n", - "As mentioned [previously](#Create-and-modify-your-own-config-file-to-include-a-'gcb'-profile-block), we need to modify the config file for the methylseq to run in Google Batch. The config file is located at `docs/human_sperm.config`. In this example, we set the working and output directory in the GCP Cloud Storage bucket `Tutorial_4/methyseq_sperm`. You need to change the path to your own result bucket. The input file is the local directory `Tutorial_4/sra_download`, where we just downloaded the data.\n", + "As mentioned [previously](#Create-and-modify-your-own-config-file-to-include-a-'gcb'-profile-block), we need to modify the config file for the methylseq to run in Google Batch. The config file is located at `docs/human_sperm.config`. In this example, we set the working and output directory in the GCP Cloud Storage bucket `Tutorial_4/methyseq_sperm`. You need to change the path to your own result bucket. The input file is the sample sheet in the directory `Tutorial_4`, that we just created.\n", "\n", "```bash\n", "profiles{\n", @@ -404,10 +3719,9 @@ " process.executor = 'google-batch'\n", " google.location = 'us-central1'\n", " google.region = 'us-central1'\n", - " google.project = 'nosi-hawaii-dna-27fa'\n", + " google.project = ''\n", " workDir = \"gs://nosi-hawaii-dna-27fa/methyseq_sperm/work\"\n", " params.outdir = \"gs://methyl/methyseq_sperm/results\"\n", - " params.input = 'Tutorial_4/sra_download/*_{1,2}.fastq'\n", " process.machineType = 'c2-standard-16'\n", " }\n", "}\n", @@ -445,14 +3759,360 @@ "scrolled": true, "tags": [] }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "N E X T F L O W ~ version 23.10.1\n", + "Launching `https://github.com/nf-core/methylseq` [irreverent_liskov] DSL2 - revision: 54f823e102 [2.6.0]\n", + "\u001b[33mWARN: The following invalid input values have been detected:\n", + "\n", + "* --tracedir: Tutorial_4/methyseq_sperm/pipeline_info\n", + "\n", + "\u001b[39m\u001b[K\n", + "\n", + "\n", + "-\u001b[2m----------------------------------------------------\u001b[0m-\n", + " \u001b[0;32m,--.\u001b[0;30m/\u001b[0;32m,-.\u001b[0m\n", + "\u001b[0;34m ___ __ __ __ ___ \u001b[0;32m/,-._.--~'\u001b[0m\n", + "\u001b[0;34m |\\ | |__ __ / ` / \\ |__) |__ \u001b[0;33m} {\u001b[0m\n", + "\u001b[0;34m | \\| | \\__, \\__/ | \\ |___ \u001b[0;32m\\`-._,-`-,\u001b[0m\n", + " \u001b[0;32m`._,._,'\u001b[0m\n", + "\u001b[0;35m nf-core/methylseq v2.6.0-g54f823e\u001b[0m\n", + "-\u001b[2m----------------------------------------------------\u001b[0m-\n", + "\u001b[1mCore Nextflow options\u001b[0m\n", + " \u001b[0;34mrevision : \u001b[0;32m2.6.0\u001b[0m\n", + " \u001b[0;34mrunName : \u001b[0;32mirreverent_liskov\u001b[0m\n", + " \u001b[0;34mlaunchDir : \u001b[0;32m/home/jupyter/DNA-Methylation-Sequencing-Analysis-with-WGBS\u001b[0m\n", + " \u001b[0;34mworkDir : \u001b[0;32m/methyseq_sperm/work\u001b[0m\n", + " \u001b[0;34mprojectDir : \u001b[0;32m/home/jupyter/.nextflow/assets/nf-core/methylseq\u001b[0m\n", + " \u001b[0;34muserName : \u001b[0;32mjupyter\u001b[0m\n", + " \u001b[0;34mprofile : \u001b[0;32mgcb\u001b[0m\n", + " \u001b[0;34mconfigFiles : \u001b[0;32m\u001b[0m\n", + "\n", + "\u001b[1mInput/output options\u001b[0m\n", + " \u001b[0;34minput : \u001b[0;32mTutorial_4/samplesheet.csv\u001b[0m\n", + " \u001b[0;34moutdir : \u001b[0;32mgs://demo-nextflow-bucket/methyseq_sperm/results\u001b[0m\n", + "\n", + "\u001b[1mReference genome options\u001b[0m\n", + " \u001b[0;34mgenome : \u001b[0;32mGRCh38\u001b[0m\n", + " \u001b[0;34mfasta : \u001b[0;32ms3://ngi-igenomes/igenomes//Homo_sapiens/NCBI/GRCh38/Sequence/WholeGenomeFasta/genome.fa\u001b[0m\n", + " \u001b[0;34mbismark_index: \u001b[0;32ms3://ngi-igenomes/igenomes//Homo_sapiens/NCBI/GRCh38/Sequence/BismarkIndex/\u001b[0m\n", + " \u001b[0;34migenomes_base: \u001b[0;32ms3://ngi-igenomes/igenomes/\u001b[0m\n", + "\n", + "\u001b[1mAdapter Trimming\u001b[0m\n", + " \u001b[0;34mclip_r1 : \u001b[0;32m2\u001b[0m\n", + "\n", + "!! Only displaying parameters that differ from the pipeline defaults !!\n", + "-\u001b[2m----------------------------------------------------\u001b[0m-\n", + "If you use nf-core/methylseq for your analysis please cite:\n", + "\n", + "* The pipeline\n", + " https://doi.org/10.5281/zenodo.1343417\n", + "\n", + "* The nf-core framework\n", + " https://doi.org/10.1038/s41587-020-0439-x\n", + "\n", + "* Software dependencies\n", + " https://github.com/nf-core/methylseq/blob/master/CITATIONS.md\n", + "\n", + "Uploading local `bin` scripts folder to gs://demo-nextflow-bucket/methyseq_sperm/work/tmp/60/27b97df8fafeb22c6f4d9e444fc3a4/bin\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[5A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[12A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[14A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[15A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[15A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[15A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[28/c1d40f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1, cached: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[15A\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[15A\n", + "executor > google-batch (1)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[16A\n", + "executor > google-batch (1)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[be/fad3cd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, cached: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[16A\n", + "executor > google-batch (1)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[be/fad3cd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, cached: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "Staging foreign file: s3://ngi-igenomes/igenomes/Homo_sapiens/NCBI/GRCh38/Sequence/BismarkIndex\u001b[K\n", + "\u001b[17A\n", + "executor > google-batch (1)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[be/fad3cd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, cached: 1\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[K\n", + "\u001b[17A\n", + "executor > google-batch (1)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[be/fad3cd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, cached: 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[K\n", + "\u001b[17A\n", + "executor > google-batch (1)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[16A\n", + "executor > google-batch (1)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[16A\n", + "executor > google-batch (2)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", + "[64/0c5d7e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[16A\n", + "executor > google-batch (3)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", + "[d9/4159eb] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[16A\n", + "executor > google-batch (3)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", + "[d9/4159eb] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "\u001b[16A\n", + "executor > google-batch (3)\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", + "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", + "[d9/4159eb] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", + "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n" + ] + } + ], "source": [ "! rm -rf Tutorial_4/methyseq_sperm\n", "\n", - "! NXF_VER=22.10.1 nextflow run nf-core/methylseq \\\n", + "! nextflow run nf-core/methylseq \\\n", " -profile gcb \\\n", - " -r 1.6.1 \\\n", + " -r 2.6.0 \\\n", " -c docs/human_sperm.config \\\n", + " --input 'Tutorial_4/samplesheet.csv' \\\n", " --genome GRCh38 \\\n", " --clip_r1 2 \\\n", " --tracedir 'Tutorial_4/methyseq_sperm/pipeline_info' \\\n", @@ -519,7 +4179,7 @@ "outputs": [], "source": [ "from IPython.display import IFrame\n", - "IFrame(src='Tutorial_4/methyseq_sperm/pipeline_info/execution_timeline.html', width=800, height=600)" + "IFrame(src='Tutorial_4/methyseq_sperm/pipeline_info/execution_timeline*.html', width=800, height=600)" ] }, { @@ -530,7 +4190,7 @@ "outputs": [], "source": [ "from IPython.display import IFrame\n", - "IFrame(src='Tutorial_4/methyseq_sperm/pipeline_info/execution_report.html', width=800, height=600)" + "IFrame(src='Tutorial_4/methyseq_sperm/pipeline_info/execution_report*.html', width=800, height=600)" ] }, { @@ -596,15 +4256,15 @@ ], "metadata": { "environment": { - "kernel": "python3", - "name": "common-cpu.m109", + "kernel": "conda-root-py", + "name": "workbench-notebooks.m118", "type": "gcloud", - "uri": "gcr.io/deeplearning-platform-release/base-cpu:m109" + "uri": "us-docker.pkg.dev/deeplearning-platform-release/gcr.io/workbench-notebooks:m118" }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel) (Local)", "language": "python", - "name": "python3" + "name": "conda-root-py" }, "language_info": { "codemirror_mode": { @@ -616,7 +4276,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.10.13" } }, "nbformat": 4, diff --git a/tutorial_5-BonusNotebook.ipynb b/tutorial_5-BonusNotebook.ipynb index 7941cee..31e0ec7 100644 --- a/tutorial_5-BonusNotebook.ipynb +++ b/tutorial_5-BonusNotebook.ipynb @@ -900,15 +900,15 @@ ], "metadata": { "environment": { - "kernel": "python3", - "name": "common-cpu.m114", + "kernel": "conda-root-py", + "name": "workbench-notebooks.m118", "type": "gcloud", - "uri": "gcr.io/deeplearning-platform-release/base-cpu:m114" + "uri": "us-docker.pkg.dev/deeplearning-platform-release/gcr.io/workbench-notebooks:m118" }, "kernelspec": { - "display_name": "Python 3 (Local)", + "display_name": "Python 3 (ipykernel) (Local)", "language": "python", - "name": "python3" + "name": "conda-root-py" }, "language_info": { "codemirror_mode": { From eb3ffda2217cb3eb0f219c17ae6a69dcbc177f3a Mon Sep 17 00:00:00 2001 From: yosufzaizb Date: Wed, 20 Mar 2024 22:13:00 +0000 Subject: [PATCH 3/4] fixed file path for tutorial 4 --- docs/human_sperm.config | 6 +- tutorial_4-methylseq2.ipynb | 3644 +---------------------------------- 2 files changed, 54 insertions(+), 3596 deletions(-) diff --git a/docs/human_sperm.config b/docs/human_sperm.config index d732290..24e78ba 100644 --- a/docs/human_sperm.config +++ b/docs/human_sperm.config @@ -3,9 +3,9 @@ profiles{ process.executor = 'google-batch' google.location = 'us-central1' google.region = 'us-central1' - google.project = 'nih-extramural-cl-000110-2' - workDir = "gs://demo-nextflow-bucket/methyseq_sperm/work" - params.outdir = "gs://demo-nextflow-bucket/methyseq_sperm/results" + google.project = '' + workDir = "gs://dna-methyl/methyseq_sperm/work" + params.outdir = "gs://dna-methyl/methyseq_sperm/results" process.machineType = 'c2-standard-16' } } \ No newline at end of file diff --git a/tutorial_4-methylseq2.ipynb b/tutorial_4-methylseq2.ipynb index c37a3b7..60d2247 100644 --- a/tutorial_4-methylseq2.ipynb +++ b/tutorial_4-methylseq2.ipynb @@ -247,7 +247,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "c24aeed5-5f93-4af1-8c37-e9789aabaf58", "metadata": { "tags": [] @@ -260,2461 +260,13 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "id": "68f683b5-62a2-44f6-92c8-f27d46863124", "metadata": { "scrolled": true, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "CAPSULE: Downloading dependency org.multiverse:multiverse-core:jar:0.7.0wait .. Downloading nextflow dependencies. It may require a few seconds, please wait .. 2/3 KB \n", - "CAPSULE: Downloading dependency org.apache.ivy:ivy:jar:2.5.1\n", - "CAPSULE: Downloading dependency org.codehaus.groovy:groovy:jar:3.0.19\n", - "CAPSULE: Downloading dependency commons-io:commons-io:jar:2.11.0\n", - "CAPSULE: Downloading dependency com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava\n", - "CAPSULE: Downloading dependency com.beust:jcommander:jar:1.35\n", - "CAPSULE: Downloading dependency jline:jline:jar:2.9\n", - "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-xml:jar:3.0.19\n", - "CAPSULE: Downloading dependency org.slf4j:log4j-over-slf4j:jar:2.0.7\n", - "CAPSULE: Downloading dependency com.github.zafarkhaja:java-semver:jar:0.9.0\n", - "CAPSULE: Downloading dependency io.nextflow:nf-commons:jar:23.10.1\n", - "CAPSULE: Downloading dependency io.nextflow:nf-httpfs:jar:23.10.1\n", - "CAPSULE: Downloading dependency javax.mail:mail:jar:1.4.7\n", - "CAPSULE: Downloading dependency com.fasterxml.jackson.core:jackson-annotations:jar:2.14.2\n", - "CAPSULE: Downloading dependency org.eclipse.jgit:org.eclipse.jgit:jar:6.5.0.202303070854-r\n", - "CAPSULE: Downloading dependency org.slf4j:slf4j-api:jar:2.0.7\n", - "CAPSULE: Downloading dependency org.iq80.leveldb:leveldb-api:jar:0.12\n", - "CAPSULE: Downloading dependency org.codehaus.gpars:gpars:jar:1.2.1\n", - "CAPSULE: Downloading dependency com.esotericsoftware.kryo:kryo:jar:2.24.0\n", - "CAPSULE: Downloading dependency org.yaml:snakeyaml:jar:2.0\n", - "CAPSULE: Downloading dependency com.google.code.gson:gson:jar:2.10.1\n", - "CAPSULE: Downloading dependency com.google.errorprone:error_prone_annotations:jar:2.11.0\n", - "CAPSULE: Downloading dependency dev.failsafe:failsafe:jar:3.1.0\n", - "CAPSULE: Downloading dependency javax.activation:activation:jar:1.1.1\n", - "CAPSULE: Downloading dependency org.pf4j:pf4j:jar:3.4.1\n", - "CAPSULE: Downloading dependency org.slf4j:jul-to-slf4j:jar:2.0.7\n", - "CAPSULE: Downloading dependency com.fasterxml.jackson.core:jackson-core:jar:2.14.2\n", - "CAPSULE: Downloading dependency com.google.guava:failureaccess:jar:1.0.1\n", - "CAPSULE: Downloading dependency org.pf4j:pf4j-update:jar:2.3.0\n", - "CAPSULE: Downloading dependency com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.14.2\n", - "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-json:jar:3.0.19\n", - "CAPSULE: Downloading dependency org.codehaus.jsr166-mirror:jsr166y:jar:1.7.0\n", - "CAPSULE: Downloading dependency commons-codec:commons-codec:jar:1.15\n", - "CAPSULE: Downloading dependency ch.artecat.grengine:grengine:jar:3.0.0\n", - "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-templates:jar:3.0.19\n", - "CAPSULE: Downloading dependency ch.qos.logback:logback-core:jar:1.4.6\n", - "CAPSULE: Downloading dependency org.slf4j:jcl-over-slf4j:jar:2.0.7\n", - "CAPSULE: Downloading dependency io.nextflow:nextflow:jar:23.10.1\n", - "CAPSULE: Downloading dependency com.google.code.findbugs:jsr305:jar:3.0.2\n", - "CAPSULE: Downloading dependency commons-lang:commons-lang:jar:2.6\n", - "CAPSULE: Downloading dependency org.jsoup:jsoup:jar:1.15.4\n", - "CAPSULE: Downloading dependency com.google.guava:guava:jar:31.1-jre\n", - "CAPSULE: Downloading dependency org.objenesis:objenesis:jar:2.1\n", - "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-yaml:jar:3.0.19\n", - "CAPSULE: Downloading dependency ch.qos.logback:logback-classic:jar:1.4.6\n", - "CAPSULE: Downloading dependency com.google.j2objc:j2objc-annotations:jar:1.3\n", - "CAPSULE: Downloading dependency org.iq80.leveldb:leveldb:jar:0.12\n", - "CAPSULE: Downloading dependency org.codehaus.groovy:groovy-nio:jar:3.0.19\n", - "CAPSULE: Downloading dependency com.googlecode.javaewah:JavaEWAH:jar:1.1.13\n", - "CAPSULE: Downloading dependency com.fasterxml.jackson.core:jackson-databind:jar:2.14.2\n", - "CAPSULE: Downloading dependency org.checkerframework:checker-qual:jar:3.12.0\n", - " \n", - " N E X T F L O W\n", - " version 23.10.1 build 5891\n", - " created 12-01-2024 22:01 UTC \n", - " cite doi:10.1038/nbt.3820\n", - " http://nextflow.io\n", - "\n", - "\n", - "Nextflow installation completed. Please note:\n", - "- the executable file `nextflow` has been created in the folder: /opt/conda/bin\n", - "\n", - "N E X T F L O W ~ version 23.10.1\n", - "Launching `https://github.com/nf-core/methylseq` [dreamy_goodall] DSL2 - revision: 81f989c93e [2.4.0]\n", - "Downloading plugin nf-google@1.8.3\n", - "\n", - "\n", - "-\u001b[2m----------------------------------------------------\u001b[0m-\n", - " \u001b[0;32m,--.\u001b[0;30m/\u001b[0;32m,-.\u001b[0m\n", - "\u001b[0;34m ___ __ __ __ ___ \u001b[0;32m/,-._.--~'\u001b[0m\n", - "\u001b[0;34m |\\ | |__ __ / ` / \\ |__) |__ \u001b[0;33m} {\u001b[0m\n", - "\u001b[0;34m | \\| | \\__, \\__/ | \\ |___ \u001b[0;32m\\`-._,-`-,\u001b[0m\n", - " \u001b[0;32m`._,._,'\u001b[0m\n", - "\u001b[0;35m nf-core/methylseq v2.4.0-g81f989c\u001b[0m\n", - "-\u001b[2m----------------------------------------------------\u001b[0m-\n", - "\u001b[1mCore Nextflow options\u001b[0m\n", - " \u001b[0;34mrevision : \u001b[0;32m2.4.0\u001b[0m\n", - " \u001b[0;34mrunName : \u001b[0;32mdreamy_goodall\u001b[0m\n", - " \u001b[0;34mcontainer : \u001b[0;32mnfcore/methylseq\u001b[0m\n", - " \u001b[0;34mlaunchDir : \u001b[0;32m/home/jupyter/DNA-Methylation-Sequencing-Analysis-with-WGBS\u001b[0m\n", - " \u001b[0;34mworkDir : \u001b[0;32m/test/work\u001b[0m\n", - " \u001b[0;34mprojectDir : \u001b[0;32m/home/jupyter/.nextflow/assets/nf-core/methylseq\u001b[0m\n", - " \u001b[0;34muserName : \u001b[0;32mjupyter\u001b[0m\n", - " \u001b[0;34mprofile : \u001b[0;32mtest,gcb\u001b[0m\n", - " \u001b[0;34mconfigFiles : \u001b[0;32m/home/jupyter/.nextflow/assets/nf-core/methylseq/nextflow.config, /home/jupyter/DNA-Methylation-Sequencing-Analysis-with-WGBS/docs/test_LS.config\u001b[0m\n", - "\n", - "\u001b[1mInput/output options\u001b[0m\n", - " \u001b[0;34minput : \u001b[0;32mhttps://raw.githubusercontent.com/nf-core/test-datasets/methylseq/samplesheet/samplesheet_test.csv\u001b[0m\n", - " \u001b[0;34moutdir : \u001b[0;32mgs://demo-nextflow-bucket/test/output\u001b[0m\n", - "\n", - "\u001b[1mReference genome options\u001b[0m\n", - " \u001b[0;34mfasta : \u001b[0;32mhttps://raw.githubusercontent.com/nf-core/test-datasets/methylseq/reference/genome.fa\u001b[0m\n", - " \u001b[0;34mfasta_index : \u001b[0;32mhttps://raw.githubusercontent.com/nf-core/test-datasets/methylseq/reference/genome.fa.fai\u001b[0m\n", - "\n", - "\u001b[1mGeneric options\u001b[0m\n", - " \u001b[0;34mtracedir : \u001b[0;32mnull/pipeline_info\u001b[0m\n", - "\n", - "\u001b[1mMax job request options\u001b[0m\n", - " \u001b[0;34mmax_cpus : \u001b[0;32m2\u001b[0m\n", - " \u001b[0;34mmax_memory : \u001b[0;32m6 GB\u001b[0m\n", - " \u001b[0;34mmax_time : \u001b[0;32m6h\u001b[0m\n", - "\n", - "\u001b[1mInstitutional config options\u001b[0m\n", - " \u001b[0;34mconfig_profile_name : \u001b[0;32mTest profile\u001b[0m\n", - " \u001b[0;34mconfig_profile_description: \u001b[0;32mMinimal test dataset to check pipeline function\u001b[0m\n", - "\n", - "!! Only displaying parameters that differ from the pipeline defaults !!\n", - "-\u001b[2m----------------------------------------------------\u001b[0m-\n", - "If you use nf-core/methylseq for your analysis please cite:\n", - "\n", - "* The pipeline\n", - " https://doi.org/10.5281/zenodo.1343417\n", - "\n", - "* The nf-core framework\n", - " https://doi.org/10.1038/s41587-020-0439-x\n", - "\n", - "* Software dependencies\n", - " https://github.com/nf-core/methylseq/blob/master/CITATIONS.md\n", - "-\u001b[2m----------------------------------------------------\u001b[0m-\n", - "Uploading local `bin` scripts folder to gs://demo-nextflow-bucket/test/work/tmp/9e/8a721792d400236aa15d37a86e0daa/bin\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[3A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[9A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[15A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[16A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[17A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[17A\n", - "executor > google-batch (1)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (2)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (2)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (2)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (2)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (2)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (2)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (2)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (3)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (4)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[96/a6b6b8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (5)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (6)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (7)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (7)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (7)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (7)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (7)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (7)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (7)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (7)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[96/a6b6b8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (8)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[96/a6b6b8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (8)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (8)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (9)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[63/3ebb2f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (9)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (9)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (9)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (10)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (11)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (11)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[dc/9176d0] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (11)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (12)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (13)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (13)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (13)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f0/95ebbd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (14)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (14)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[90/ad3505] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (15)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (16)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (16)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (17)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (18)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (18)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[48/464931] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (18)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (18)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (19)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[60/ad985f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (20)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (21)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (21)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (21)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (21)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (21)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (21)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[f2/97e527] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (22)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (22)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (22)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (22)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (22)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (23)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (23)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (24)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[ea/9b7ca2] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (24)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (25)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[29/75c2db] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (25)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[21/45efec] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, failed: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[ae/0ca7d8] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (Ecoli_10K_methylated)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[24A\n", - "executor > google-batch (25)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[ae/0ca7d8] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (Ecoli_10K_methylated)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[24A\n", - "executor > google-batch (26)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-2145efec-171095-b017f7e5-5571-41370' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[21/45efec] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub1)` terminated with an error exit status (139) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-ae0ca7d8-171095-54561dd1-a3fe-40bc0' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[ae/0ca7d8] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (Ecoli_10K_methylated)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[24A\n", - "executor > google-batch (26)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[24A\n", - "executor > google-batch (26)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[24A\n", - "executor > google-batch (26)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[19A\n", - "executor > google-batch (26)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3 ✔\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[19A\n", - "executor > google-batch (26)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[19A\n", - "executor > google-batch (26)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[36/ca6e81] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ab/f45ef7] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (27)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/afd963] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (28)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (28)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (28)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (28)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[1e/2a6a02] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (28)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (28)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (28)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[83/d9031e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (29)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (29)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[65/137736] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (30)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[ae/0ca7d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (31)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (31)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (31)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3, failed: 2 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (31)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (31)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (31)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3 ✔\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (31)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[81/34f45f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (32)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Cannot read logs for Batch job 'nf-4337d395-171095-eaea6e5a-726b-40330' - cause: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Cloud Logging API has not been used in project 221001954504 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/logging.googleapis.com/overview?project=221001954504 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.\u001b[39m\u001b[K\n", - "\u001b[33m[43/37d395] NOTE: Process `NFCORE_METHYLSEQ:METHYLSEQ:PRESEQ_LCEXTRAP (SRR389222_sub2)` terminated with an error exit status (1) -- Error is ignored\u001b[39m\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (32)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (32)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[21A\n", - "executor > google-batch (32)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[bd/49ec06] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (33)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 66%] 2 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[19A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[19A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[19A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_SUMMARY` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_SUMMARY` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (34)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_SUMMARY` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (35)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_REPORT` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[33mWARN: Process `NFCORE_METHYLSEQ:METHYLSEQ:BISMARK:BISMARK_SUMMARY` publishDir path contains a variable with a null value\u001b[39m\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (35)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (35)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[K\n", - "\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (35)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (35)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (36)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (36)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (36)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "\u001b[18A\n", - "executor > google-batch (36)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "Waiting for file transfers to complete (2 files)\u001b[K\n", - "\u001b[19A\n", - "executor > google-batch (36)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "Waiting for file transfers to complete (2 files)\u001b[K\n", - "-\u001b[0;35m[nf-core/methylseq]\u001b[0;33m Pipeline completed successfully, but with errored process(es) \u001b[0m-\u001b[K\n", - "\u001b[20A\n", - "executor > google-batch (36)\u001b[K\n", - "[de/39020e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/653b31] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[a0/98be25] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[76/bb731d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[76/9dfb7a] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[37/f19c94] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[75/ee4c9e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[0b/82335d] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[6d/3f10d8] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[7f/6620d9] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[61/b31e00] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[c5/962eac] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[e0/f23e0b] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3 ✔\u001b[K\n", - "[43/37d395] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 3 of 3, failed: 3 ✔\u001b[K\n", - "[a0/c65e90] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "[cd/e76b95] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1 ✔\u001b[K\n", - "Waiting for file transfers to complete (2 files)\u001b[K\n", - "-\u001b[0;35m[nf-core/methylseq]\u001b[0;33m Pipeline completed successfully, but with errored process(es) \u001b[0m-\u001b[K\n", - "\u001b[32;1mCompleted at: 20-Mar-2024 18:46:08\n", - "Duration : 23m 45s\n", - "CPU hours : 0.1 (0.2% failed)\n", - "Succeeded : 33\n", - "Ignored : 3\n", - "Failed : 3\n", - "\u001b[22;39m\u001b[K\n", - "\n" - ] - } - ], + "outputs": [], "source": [ "! rm -rf Tutorial_4/test\n", "!nextflow self-update\n", @@ -2723,7 +275,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "id": "c4600c1c-e6c2-4d00-928b-3c097bcbc564", "metadata": { "tags": [] @@ -2772,722 +324,13 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "id": "1314272a-5980-4c46-9217-838de16313d4", "metadata": { "scrolled": true, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "Looking for: [\"sra-tools[version='>2.11']\"]\n", - "\n", - "\u001b[?25l\u001b[2K\u001b[0G[+] 0.0s\n", - "\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.1s\n", - "bioconda/linux-64 \u001b[33m━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\n", - "bioconda/noarch \u001b[33m━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\n", - "conda-forge/linux-64 \u001b[33m━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\n", - "conda-forge/noarch \u001b[90m━━━━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\n", - "pkgs/main/linux-64 \u001b[33m━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gpkgs/main/linux-64 No change\n", - "[+] 0.2s\n", - "bioconda/linux-64 \u001b[33m━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.2s\n", - "bioconda/noarch \u001b[33m━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.2s\n", - "conda-forge/linux-64 \u001b[33m━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.2s\n", - "conda-forge/noarch \u001b[90m━━━━━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.2s\n", - "pkgs/r/noarch \u001b[90m━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gpkgs/r/noarch No change\n", - "[+] 0.3s\n", - "bioconda/linux-64 \u001b[33m━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━\u001b[0m 565.0kB / ??.?MB @ 2.1MB/s 0.3s\n", - "bioconda/noarch \u001b[33m━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━━\u001b[0m 85.1kB / ??.?MB @ 315.4kB/s 0.3s\n", - "conda-forge/linux-64 ━╸\u001b[90m━━━━━━━━━━━━━━━━━━━━━\u001b[0m 3.6MB / 33.2MB @ 12.3MB/s 0.3s\n", - "conda-forge/noarch ━╸\u001b[90m━━━━━━━━━━━━━━━━━━━━━\u001b[0m 1.8MB / 14.0MB @ 7.5MB/s 0.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gpkgs/main/noarch No change\n", - "[+] 0.4s\n", - "bioconda/linux-64 \u001b[33m━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━\u001b[0m 888.2kB / ??.?MB @ 2.7MB/s 0.4s\n", - "bioconda/noarch \u001b[33m━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━━\u001b[0m 584.4kB / ??.?MB @ 1.7MB/s 0.4s\n", - "conda-forge/linux-64 ━━╸\u001b[90m━━━━━━━━━━━━━━━━━━━━\u001b[0m 5.3MB / 33.2MB @ 14.1MB/s 0.4s\n", - "conda-forge/noarch ━━━━━━━╸\u001b[90m━━━━━━━━━━━━━━━\u001b[0m 5.1MB / 14.0MB @ 12.9MB/s 0.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.5s\n", - "bioconda/linux-64 \u001b[90m╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━\u001b[0m 1.6MB / ??.?MB @ 3.2MB/s 0.5s\n", - "bioconda/noarch \u001b[33m━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━\u001b[0m 927.9kB / ??.?MB @ 2.2MB/s 0.5s\n", - "conda-forge/linux-64 ━━━╸\u001b[90m━━━━━━━━━━━━━━━━━━━\u001b[0m 6.9MB / 33.2MB @ 15.2MB/s 0.5s\n", - "conda-forge/noarch ━━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━\u001b[0m 6.7MB / 14.0MB @ 14.0MB/s 0.5s\n", - "pkgs/r/linux-64 \u001b[90m━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 0.0 B / ??.?MB @ ??.?MB/s 0.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gpkgs/r/linux-64 No change\n", - "[+] 0.6s\n", - "bioconda/linux-64 \u001b[90m━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━\u001b[0m 2.1MB / ??.?MB @ 3.5MB/s 0.6s\n", - "bioconda/noarch \u001b[33m━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━\u001b[0m 1.3MB / ??.?MB @ 2.6MB/s 0.6s\n", - "conda-forge/linux-64 ━━━━╸\u001b[90m━━━━━━━━━━━━━━━━━━\u001b[0m 8.5MB / 33.2MB @ 15.8MB/s 0.6s\n", - "conda-forge/noarch ━━━━━━━━━━━━╸\u001b[90m━━━━━━━━━━\u001b[0m 8.4MB / 14.0MB @ 14.8MB/s 0.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.7s\n", - "bioconda/linux-64 \u001b[90m━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━\u001b[0m 2.1MB / ??.?MB @ 3.5MB/s 0.7s\n", - "bioconda/noarch \u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━\u001b[0m 1.7MB / ??.?MB @ 2.9MB/s 0.7s\n", - "conda-forge/linux-64 ━━━━━╸\u001b[90m━━━━━━━━━━━━━━━━━\u001b[0m 10.1MB / 33.2MB @ 15.4MB/s 0.7s\n", - "conda-forge/noarch ━━━━━━━━━━━━━━━╸\u001b[90m━━━━━━━\u001b[0m 10.0MB / 14.0MB @ 14.4MB/s 0.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.8s\n", - "bioconda/linux-64 \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 2.6MB / ??.?MB @ 3.6MB/s 0.8s\n", - "bioconda/noarch \u001b[90m╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━\u001b[0m 2.2MB / ??.?MB @ 3.0MB/s 0.8s\n", - "conda-forge/linux-64 ━━━━━━━╸\u001b[90m━━━━━━━━━━━━━━━\u001b[0m 11.8MB / 33.2MB @ 15.1MB/s 0.8s\n", - "conda-forge/noarch ━━━━━━━━━━━━━━━╸\u001b[90m━━━━━━━\u001b[0m 10.0MB / 14.0MB @ 14.4MB/s 0.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.9s\n", - "bioconda/linux-64 \u001b[90m━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 3.0MB / ??.?MB @ 3.6MB/s 0.9s\n", - "bioconda/noarch \u001b[90m━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━\u001b[0m 2.6MB / ??.?MB @ 3.0MB/s 0.9s\n", - "conda-forge/linux-64 ━━━━━━━╸\u001b[90m━━━━━━━━━━━━━━━\u001b[0m 11.8MB / 33.2MB @ 15.1MB/s 0.9s\n", - "conda-forge/noarch ━━━━━━━━━━━━━━━━━━╸\u001b[90m━━━━\u001b[0m 11.6MB / 14.0MB @ 14.1MB/s 0.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.0s\n", - "bioconda/linux-64 \u001b[90m━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━\u001b[0m 3.6MB / ??.?MB @ 3.7MB/s 1.0s\n", - "bioconda/noarch \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 3.0MB / ??.?MB @ 3.1MB/s 1.0s\n", - "conda-forge/linux-64 ━━━━━━━━╸\u001b[90m━━━━━━━━━━━━━━\u001b[0m 13.4MB / 33.2MB @ 14.8MB/s 1.0s\n", - "conda-forge/noarch ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 13.2MB / 14.0MB @ 14.1MB/s 1.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.1s\n", - "bioconda/linux-64 \u001b[90m━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━\u001b[0m 3.6MB / ??.?MB @ 3.7MB/s 1.1s\n", - "bioconda/noarch \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 3.0MB / ??.?MB @ 3.1MB/s 1.1s\n", - "conda-forge/linux-64 ━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━━\u001b[0m 15.0MB / 33.2MB @ 14.7MB/s 1.1s\n", - "conda-forge/noarch ━━━━━━━━━━━━━━━━━━━━━━━ 14.0MB / 14.0MB @ 13.4MB/s 1.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.2s\n", - "bioconda/linux-64 \u001b[90m━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━\u001b[0m 3.6MB / ??.?MB @ 3.7MB/s 1.2s\n", - "bioconda/noarch \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 3.0MB / ??.?MB @ 3.1MB/s 1.2s\n", - "conda-forge/linux-64 ━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━━\u001b[0m 15.0MB / 33.2MB @ 14.7MB/s 1.2s\n", - "conda-forge/noarch ━━━━━━━━━━━━━━━━━━━━━━━ 14.0MB / 14.0MB @ 13.4MB/s 1.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.3s\n", - "bioconda/linux-64 \u001b[90m━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━\u001b[0m 3.6MB / ??.?MB @ 3.7MB/s 1.3s\n", - "bioconda/noarch \u001b[90m━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━━\u001b[0m 3.0MB / ??.?MB @ 3.1MB/s 1.3s\n", - "conda-forge/linux-64 ━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━━\u001b[0m 15.0MB / 33.2MB @ 14.7MB/s 1.3s\n", - "conda-forge/noarch ━━━━━━━━━━━━━━━━━━━━━━━ 14.0MB / 14.0MB @ 13.4MB/s 1.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gconda-forge/noarch 14.0MB @ 13.4MB/s 1.3s\n", - "[+] 1.4s\n", - "bioconda/linux-64 \u001b[90m━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━━\u001b[0m 4.0MB / ??.?MB @ 3.1MB/s 1.4s\n", - "bioconda/noarch \u001b[90m━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━━\u001b[0m 3.5MB / ??.?MB @ 2.6MB/s 1.4s\n", - "conda-forge/linux-64 ━━━━━━━━━━╸\u001b[90m━━━━━━━━━━━━\u001b[0m 16.7MB / 33.2MB @ 12.0MB/s 1.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.5s\n", - "bioconda/linux-64 \u001b[90m━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━\u001b[0m 5.0MB / ??.?MB @ 3.4MB/s 1.5s\n", - "bioconda/noarch \u001b[90m━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 4.0MB / ??.?MB @ 2.8MB/s 1.5s\n", - "conda-forge/linux-64 ━━━━━━━━━━━╸\u001b[90m━━━━━━━━━━━\u001b[0m 18.3MB / 33.2MB @ 12.5MB/s 1.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.6s\n", - "bioconda/linux-64 \u001b[90m━━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━\u001b[0m 5.3MB / ??.?MB @ 3.4MB/s 1.6s\n", - "bioconda/noarch \u001b[90m━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━━\u001b[0m 4.9MB / ??.?MB @ 3.1MB/s 1.6s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━╸\u001b[90m━━━━━━━━━━\u001b[0m 19.9MB / 33.2MB @ 12.9MB/s 1.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gbioconda/linux-64 5.3MB @ 3.4MB/s 1.7s\n", - "[+] 1.7s\n", - "bioconda/noarch \u001b[90m━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━\u001b[0m 5.2MB / ??.?MB @ 3.0MB/s 1.7s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━╸\u001b[90m━━━━━━━━━\u001b[0m 21.6MB / 33.2MB @ 13.3MB/s 1.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.8s\n", - "bioconda/noarch \u001b[90m━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━━━━\u001b[0m 5.2MB / ??.?MB @ 3.0MB/s 1.8s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━╸\u001b[90m━━━━━━━━\u001b[0m 23.2MB / 33.2MB @ 13.3MB/s 1.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gbioconda/noarch 5.2MB @ 3.0MB/s 1.8s\n", - "[+] 1.9s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━╸\u001b[90m━━━━━━\u001b[0m 24.8MB / 33.2MB @ 13.3MB/s 1.9s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.0s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━╸\u001b[90m━━━━\u001b[0m 28.1MB / 33.2MB @ 14.4MB/s 2.0s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.1s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.1s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.2s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.2s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.3s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.3s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.4s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.4s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.5s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.5s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.6s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.6s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.7s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.7s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.8s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.8s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.9s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 2.9s\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.0s\n", - "conda-forge/linux-64 ━━━━━━━━━━━━━━━━━━━━╸\u001b[90m━━\u001b[0m 31.4MB / 33.2MB @ 15.5MB/s 3.0s\u001b[2K\u001b[1A\u001b[2K\u001b[0Gconda-forge/linux-64 33.2MB @ 16.0MB/s 3.0s\n", - "\u001b[?25h\n", - "Pinned packages:\n", - " - python 3.10.*\n", - "\n", - "\n", - "Transaction\n", - "\n", - " Prefix: /opt/conda\n", - "\n", - " Updating specs:\n", - "\n", - " - sra-tools[version='>2.11']\n", - " - ca-certificates\n", - " - certifi\n", - " - openssl\n", - "\n", - "\n", - " Package Version Build Channel Size\n", - "───────────────────────────────────────────────────────────────────────────────────\n", - " Install:\n", - "───────────────────────────────────────────────────────────────────────────────────\n", - "\n", - " \u001b[32m+ ossuuid \u001b[0m 1.6.2 hf484d3e_1000 conda-forge 57kB\n", - " \u001b[32m+ perl-threaded \u001b[0m 5.32.1 hdfd78af_1 bioconda 6kB\n", - " \u001b[32m+ perl-uri \u001b[0m 1.71 0 bioconda 38kB\n", - " \u001b[32m+ perl-xml-sax-base \u001b[0m 1.08 0 bioconda 13kB\n", - " \u001b[32m+ perl-xml-namespacesupport\u001b[0m 1.11 0 bioconda 6kB\n", - " \u001b[32m+ perl-xml-sax \u001b[0m 0.99 0 bioconda 25kB\n", - " \u001b[32m+ perl-xml-libxml \u001b[0m 2.0124 0 bioconda 220kB\n", - " \u001b[32m+ ncbi-vdb \u001b[0m 3.1.0 hdbdd923_0 bioconda 11MB\n", - " \u001b[32m+ sra-tools \u001b[0m 3.1.0 h9f5acd7_0 bioconda 79MB\n", - "\n", - " Downgrade:\n", - "───────────────────────────────────────────────────────────────────────────────────\n", - "\n", - " \u001b[31m- perl \u001b[0m 5.32.1 7_hd590300_perl5 conda-forge\u001b[32m Cached\u001b[0m\n", - " \u001b[32m+ perl \u001b[0m 5.22.2.1 0 conda-forge 16MB\n", - "\n", - " Summary:\n", - "\n", - " Install: 9 packages\n", - " Downgrade: 1 packages\n", - "\n", - " Total download: 106MB\n", - "\n", - "───────────────────────────────────────────────────────────────────────────────────\n", - "\n", - "\n", - "\u001b[?25l\u001b[2K\u001b[0G[+] 0.0s\n", - "Downloading \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 0.0 B 0.0s\n", - "Extracting \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 0 0.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.1s\n", - "Downloading (5) \u001b[33m━━╸\u001b[0m\u001b[90m━━━━━━━━━━━━━━━━━━━━\u001b[0m 0.0 B ossuuid 0.0s\n", - "Extracting \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 0 0.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gperl-threaded 5.5kB @ 47.1kB/s 0.1s\n", - "ossuuid 56.9kB @ 410.7kB/s 0.1s\n", - "perl-uri 37.7kB @ 219.0kB/s 0.2s\n", - "perl-xml-sax-base 12.9kB @ 74.3kB/s 0.2s\n", - "perl-xml-namespacesupport 6.4kB @ 37.0kB/s 0.1s\n", - "[+] 0.2s\n", - "Downloading (5) \u001b[33m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 556.6kB ncbi-vdb 0.1s\n", - "Extracting (5) \u001b[90m━━━━━━━━━━━╸\u001b[0m\u001b[33m━━━━━━━━━━━\u001b[0m 0 ossuuid 0.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gperl-xml-sax 24.7kB @ 107.2kB/s 0.1s\n", - "[+] 0.3s\n", - "Downloading (4) \u001b[33m━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m 1.9MB ncbi-vdb 0.2s\n", - "Extracting (4) ━━━╸\u001b[33m━━━━━━━━━╸\u001b[0m\u001b[90m━━━━━━━━━\u001b[0m 2 perl-uri 0.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gperl-xml-libxml 219.6kB @ 623.7kB/s 0.2s\n", - "[+] 0.4s\n", - "Downloading (3) ━╸\u001b[33m━━━━━━━━━━━━━━━━━━━━━\u001b[0m 10.3MB ncbi-vdb 0.3s\n", - "Extracting (1) ━━━━━━━━━━━━╸\u001b[33m━━━╸\u001b[0m\u001b[90m━━━━━━\u001b[0m 6 perl-xml-libxml 0.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gncbi-vdb 11.1MB @ 25.0MB/s 0.3s\n", - "perl 15.7MB @ 33.7MB/s 0.5s\n", - "[+] 0.5s\n", - "Downloading (1) ━━━━━━━╸\u001b[33m━━━━━━━━━━━━━━━\u001b[0m 38.3MB sra-tools 0.4s\n", - "Extracting (3) ━━━━━━━━━━━━╸\u001b[33m━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 6 perl-xml-libxml 0.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.6s\n", - "Downloading (1) ━━━━━━━━╸\u001b[33m━━━━━━━━━━━━━━\u001b[0m 45.1MB sra-tools 0.5s\n", - "Extracting (3) ━━━━━━━━━━━━╸\u001b[33m━━━━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 6 perl-xml-libxml 0.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.7s\n", - "Downloading (1) ━━━━━━━━━━╸\u001b[33m━━━━━━━━━━━━\u001b[0m 54.6MB sra-tools 0.6s\n", - "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 ncbi-vdb 0.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.8s\n", - "Downloading (1) ━━━━━━━━━━━╸\u001b[33m━━━━━━━━━━━\u001b[0m 59.9MB sra-tools 0.7s\n", - "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 ncbi-vdb 0.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 0.9s\n", - "Downloading (1) ━━━━━━━━━━━━━╸\u001b[33m━━━━━━━━━\u001b[0m 66.8MB sra-tools 0.8s\n", - "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 ncbi-vdb 0.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.0s\n", - "Downloading (1) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 78.3MB sra-tools 0.9s\n", - "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 ncbi-vdb 0.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.1s\n", - "Downloading (1) ━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━\u001b[0m 83.4MB sra-tools 1.0s\n", - "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 perl 0.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.2s\n", - "Downloading (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 95.6MB sra-tools 1.1s\n", - "Extracting (2) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━╸\u001b[0m\u001b[90m━━\u001b[0m 7 perl 1.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0Gsra-tools 78.7MB @ 61.3MB/s 1.1s\n", - "[+] 1.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 1.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 1.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 1.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 1.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 1.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 1.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 1.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 1.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 1.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 1.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 2.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 2.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 2.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 2.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 2.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 2.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 2.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 2.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 2.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 sra-tools 2.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 2.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 3.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 3.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 ncbi-vdb 3.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 3.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (3) ━━━━━━━━━━━━━━━╸\u001b[33m━━━━━━━\u001b[0m 7 perl 3.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 3.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 3.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 3.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 3.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 3.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 3.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 4.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 4.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 4.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 5.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 5.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 5.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 5.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 5.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 5.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 6.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 perl 6.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 6.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (2) ━━━━━━━━━━━━━━━━━╸\u001b[33m━━━━━\u001b[0m 8 sra-tools 7.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 7.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 7.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 8.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 8.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 9.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 9.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 10.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 10.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 11.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 11.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 12.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 12.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 13.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 13.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 14.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 14.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 15.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 15.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 16.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 16.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 17.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 17.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 18.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 18.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 19.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 19.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 20.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 20.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 21.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 21.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 22.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 22.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 23.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 23.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 24.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 24.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 25.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 25.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.3s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.1s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.4s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.2s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.5s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.3s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.6s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.4s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.7s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.5s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.8s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.6s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 26.9s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.7s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 27.0s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.8s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 27.1s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 26.9s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G[+] 27.2s\n", - "Downloading ━━━━━━━━━━━━━━━━━━━━━━━ 105.9MB 1.2s\n", - "Extracting (1) ━━━━━━━━━━━━━━━━━━━╸\u001b[33m━━━\u001b[0m 9 sra-tools 27.0s\u001b[2K\u001b[1A\u001b[2K\u001b[1A\u001b[2K\u001b[0G\u001b[?25h\n", - "Downloading and Extracting Packages:\n", - "\n", - "Preparing transaction: done\n", - "Verifying transaction: done\n", - "Executing transaction: done\n" - ] - } - ], + "outputs": [], "source": [ "import os\n", "os.environ[\"PATH\"] += os.pathsep + os.environ[\"HOME\"]+\"/mambaforge/bin\"\n", @@ -3514,25 +357,13 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "id": "04e74cb8-1ffc-484f-8b26-4c11703cbc66", "metadata": { "scrolled": true, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "gzip: compressed data not written to a terminal. Use -f to force compression.\n", - "For help, type: gzip -h\n", - "2024-03-20T19:41:00 fasterq-dump.3.1.0 err: param unknown while parsing argument list within application support module - Unknown argument '--gz'\n", - "2024-03-20T19:41:00 fasterq-dump.3.1.0 err: ArgsMakeAndHandle() -> RC(rcApp,rcArgv,rcParsing,rcParam,rcUnknown)\n", - "fasterq-dump quit with error code 3\n" - ] - } - ], + "outputs": [], "source": [ "! fasterq-dump --threads 4 --gz --progress SRR306435 SRR033942 -O Tutorial_4/sra_download" ] @@ -3547,7 +378,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "id": "3ab5a465-a3a7-4968-84c4-f6d7bed30dee", "metadata": { "tags": [] @@ -3567,16 +398,27 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "id": "8efc1fcd-7496-4186-9b36-94678283e877", "metadata": { "tags": [] }, "outputs": [], "source": [ + "#faster way to compress the files\n", "!pigz Tutorial_4/sra_download/SRR*" ] }, + { + "cell_type": "code", + "execution_count": null, + "id": "ac635647-9962-42ed-bd2d-0c638332d8bc", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [] + }, { "cell_type": "code", "execution_count": null, @@ -3602,70 +444,12 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "id": "27799ac8-6fd2-4c2e-abb6-af9c81bbef57", "metadata": { "tags": [] }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
samplefastq_1fastq_2
0SRR033942Tutorial_4/sra_download/SRR033942_1.fastq.gzTutorial_4/sra_download/SRR033942_2.fastq.gz
1SRR306435Tutorial_4/sra_download/SRR306435_1.fastq.gzTutorial_4/sra_download/SRR306435_2.fastq.gz
\n", - "
" - ], - "text/plain": [ - " sample fastq_1 \\\n", - "0 SRR033942 Tutorial_4/sra_download/SRR033942_1.fastq.gz \n", - "1 SRR306435 Tutorial_4/sra_download/SRR306435_1.fastq.gz \n", - "\n", - " fastq_2 \n", - "0 Tutorial_4/sra_download/SRR033942_2.fastq.gz \n", - "1 Tutorial_4/sra_download/SRR306435_2.fastq.gz " - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "# Pandas DataFrame by lists of dicts.\n", "import pandas as pd\n", @@ -3692,7 +476,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "id": "fa9bf795-bdd9-486e-ae8e-2ae4fa6c25df", "metadata": { "tags": [] @@ -3759,352 +543,7 @@ "scrolled": true, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "N E X T F L O W ~ version 23.10.1\n", - "Launching `https://github.com/nf-core/methylseq` [irreverent_liskov] DSL2 - revision: 54f823e102 [2.6.0]\n", - "\u001b[33mWARN: The following invalid input values have been detected:\n", - "\n", - "* --tracedir: Tutorial_4/methyseq_sperm/pipeline_info\n", - "\n", - "\u001b[39m\u001b[K\n", - "\n", - "\n", - "-\u001b[2m----------------------------------------------------\u001b[0m-\n", - " \u001b[0;32m,--.\u001b[0;30m/\u001b[0;32m,-.\u001b[0m\n", - "\u001b[0;34m ___ __ __ __ ___ \u001b[0;32m/,-._.--~'\u001b[0m\n", - "\u001b[0;34m |\\ | |__ __ / ` / \\ |__) |__ \u001b[0;33m} {\u001b[0m\n", - "\u001b[0;34m | \\| | \\__, \\__/ | \\ |___ \u001b[0;32m\\`-._,-`-,\u001b[0m\n", - " \u001b[0;32m`._,._,'\u001b[0m\n", - "\u001b[0;35m nf-core/methylseq v2.6.0-g54f823e\u001b[0m\n", - "-\u001b[2m----------------------------------------------------\u001b[0m-\n", - "\u001b[1mCore Nextflow options\u001b[0m\n", - " \u001b[0;34mrevision : \u001b[0;32m2.6.0\u001b[0m\n", - " \u001b[0;34mrunName : \u001b[0;32mirreverent_liskov\u001b[0m\n", - " \u001b[0;34mlaunchDir : \u001b[0;32m/home/jupyter/DNA-Methylation-Sequencing-Analysis-with-WGBS\u001b[0m\n", - " \u001b[0;34mworkDir : \u001b[0;32m/methyseq_sperm/work\u001b[0m\n", - " \u001b[0;34mprojectDir : \u001b[0;32m/home/jupyter/.nextflow/assets/nf-core/methylseq\u001b[0m\n", - " \u001b[0;34muserName : \u001b[0;32mjupyter\u001b[0m\n", - " \u001b[0;34mprofile : \u001b[0;32mgcb\u001b[0m\n", - " \u001b[0;34mconfigFiles : \u001b[0;32m\u001b[0m\n", - "\n", - "\u001b[1mInput/output options\u001b[0m\n", - " \u001b[0;34minput : \u001b[0;32mTutorial_4/samplesheet.csv\u001b[0m\n", - " \u001b[0;34moutdir : \u001b[0;32mgs://demo-nextflow-bucket/methyseq_sperm/results\u001b[0m\n", - "\n", - "\u001b[1mReference genome options\u001b[0m\n", - " \u001b[0;34mgenome : \u001b[0;32mGRCh38\u001b[0m\n", - " \u001b[0;34mfasta : \u001b[0;32ms3://ngi-igenomes/igenomes//Homo_sapiens/NCBI/GRCh38/Sequence/WholeGenomeFasta/genome.fa\u001b[0m\n", - " \u001b[0;34mbismark_index: \u001b[0;32ms3://ngi-igenomes/igenomes//Homo_sapiens/NCBI/GRCh38/Sequence/BismarkIndex/\u001b[0m\n", - " \u001b[0;34migenomes_base: \u001b[0;32ms3://ngi-igenomes/igenomes/\u001b[0m\n", - "\n", - "\u001b[1mAdapter Trimming\u001b[0m\n", - " \u001b[0;34mclip_r1 : \u001b[0;32m2\u001b[0m\n", - "\n", - "!! Only displaying parameters that differ from the pipeline defaults !!\n", - "-\u001b[2m----------------------------------------------------\u001b[0m-\n", - "If you use nf-core/methylseq for your analysis please cite:\n", - "\n", - "* The pipeline\n", - " https://doi.org/10.5281/zenodo.1343417\n", - "\n", - "* The nf-core framework\n", - " https://doi.org/10.1038/s41587-020-0439-x\n", - "\n", - "* Software dependencies\n", - " https://github.com/nf-core/methylseq/blob/master/CITATIONS.md\n", - "\n", - "Uploading local `bin` scripts folder to gs://demo-nextflow-bucket/methyseq_sperm/work/tmp/60/27b97df8fafeb22c6f4d9e444fc3a4/bin\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[5A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[12A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[14A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[15A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[15A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[15A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[28/c1d40f] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 1 of 1, cached: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[15A\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[15A\n", - "executor > google-batch (1)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[16A\n", - "executor > google-batch (1)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[be/fad3cd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, cached: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[16A\n", - "executor > google-batch (1)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[be/fad3cd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, cached: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "Staging foreign file: s3://ngi-igenomes/igenomes/Homo_sapiens/NCBI/GRCh38/Sequence/BismarkIndex\u001b[K\n", - "\u001b[17A\n", - "executor > google-batch (1)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[be/fad3cd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, cached: 1\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[K\n", - "\u001b[17A\n", - "executor > google-batch (1)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[be/fad3cd] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 50%] 1 of 2, cached: 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[K\n", - "\u001b[17A\n", - "executor > google-batch (1)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[16A\n", - "executor > google-batch (1)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[16A\n", - "executor > google-batch (2)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", - "[64/0c5d7e] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[16A\n", - "executor > google-batch (3)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", - "[d9/4159eb] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[16A\n", - "executor > google-batch (3)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", - "[d9/4159eb] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "\u001b[16A\n", - "executor > google-batch (3)\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[16/25d7fe] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 2 ✔\u001b[K\n", - "[c2/f60731] process > NFCORE_METHYLSEQ:METHYLSEQ:... [100%] 2 of 2, cached: 1 ✔\u001b[K\n", - "[d9/4159eb] process > NFCORE_METHYLSEQ:METHYLSEQ:... [ 0%] 0 of 2\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n", - "[- ] process > NFCORE_METHYLSEQ:METHYLSEQ:... -\u001b[K\n" - ] - } - ], + "outputs": [], "source": [ "! rm -rf Tutorial_4/methyseq_sperm\n", "\n", @@ -4123,7 +562,9 @@ "cell_type": "code", "execution_count": null, "id": "2695dbca-104a-4bab-b0bc-393c0b3d547d", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# Remove the remote trace file diretory\n", @@ -4149,14 +590,16 @@ "cell_type": "code", "execution_count": null, "id": "093cf8e2-eb12-46fd-9fd3-ca0ac5e35a3d", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# List the output files/directories in the results folder\n", "! gsutil ls gs://dna-methyl/methyseq_sperm/results\n", "\n", "# Copy the multiQC output multiqc_report.html to local notebook:\n", - "! gsutil cp -r gs://dna-methyl/methyseq_sperm/results/MultiQC/multiqc_report.html .\n", + "! gsutil cp -r gs://dna-methyl/methyseq_sperm/results/multiqc/bismark/multiqc_report.html .\n", "\n", "# View the MultiQC output HTML file:\n", "from IPython.display import IFrame\n", @@ -4168,18 +611,33 @@ "id": "c1ad5eda-2318-4ec0-a353-0dac3955bbf7", "metadata": {}, "source": [ - "There are two files (`execution_timeline.html` and `execution_report.html`) about the pipeline running information will be saved in the results/pipeline_info directory locally in the notebook, which can provide detailed information about the running time for each process and the their resource usages. This can provide more insights for potential optimizations." + "There are two files (`execution_timeline.html` and `execution_report.html`) about the pipeline running information will be saved in the null/pipeline_info directory locally in the notebook, which can provide detailed information about the running time for each process and the their resource usages. This can provide more insights for potential optimizations. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1e0a760c-8805-4354-a2e6-f4a317d3f7ed", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "#use the file name listed in here\n", + "!ls null/pipeline_info" ] }, { "cell_type": "code", "execution_count": null, "id": "79af3cc4-caf1-4d4f-8133-d307dbaa2916", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "from IPython.display import IFrame\n", - "IFrame(src='Tutorial_4/methyseq_sperm/pipeline_info/execution_timeline*.html', width=800, height=600)" + "IFrame(src='null/pipeline_info/execution_timeline.html', width=800, height=600)" ] }, { @@ -4190,7 +648,7 @@ "outputs": [], "source": [ "from IPython.display import IFrame\n", - "IFrame(src='Tutorial_4/methyseq_sperm/pipeline_info/execution_report*.html', width=800, height=600)" + "IFrame(src='null/pipeline_info/execution_report.html', width=800, height=600)" ] }, { From 4afa25b24f6ba87f7b9c39a67a730c283417f4e4 Mon Sep 17 00:00:00 2001 From: yosufzaizb Date: Wed, 20 Mar 2024 22:20:08 +0000 Subject: [PATCH 4/4] deleted extra cells --- tutorial_4-methylseq2.ipynb | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/tutorial_4-methylseq2.ipynb b/tutorial_4-methylseq2.ipynb index 60d2247..446f3bb 100644 --- a/tutorial_4-methylseq2.ipynb +++ b/tutorial_4-methylseq2.ipynb @@ -365,7 +365,7 @@ }, "outputs": [], "source": [ - "! fasterq-dump --threads 4 --gz --progress SRR306435 SRR033942 -O Tutorial_4/sra_download" + "! fasterq-dump --threads 4 --progress SRR306435 SRR033942 -O Tutorial_4/sra_download" ] }, { @@ -409,26 +409,6 @@ "!pigz Tutorial_4/sra_download/SRR*" ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "ac635647-9962-42ed-bd2d-0c638332d8bc", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4873545a-43be-4390-82f1-4f5acf24eac2", - "metadata": {}, - "outputs": [], - "source": [ - "!pigz" - ] - }, { "cell_type": "markdown", "id": "1775f2b8-83a4-4e96-aa6b-64108377f22e", @@ -623,7 +603,7 @@ }, "outputs": [], "source": [ - "#use the file name listed in here\n", + "#use the file names listed in here\n", "!ls null/pipeline_info" ] },