From be3b4c7f2d3881df1c2058a861a7e4f6637e93fd Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Wed, 2 Sep 2020 16:28:05 -0400 Subject: [PATCH 01/15] Ignore more --- .gitignore | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b3311ea..e29ed7c 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,14 @@ override.tf.json work *.nextflow* +# Rstudio server files +rstudio-server.json +.rstudio + +# Cache files +.cache + +# intermediate reference and analysis files workflows/rnaseq-ref-index/annotation/ workflows/rnaseq-ref-index/fasta/ - +workflows/alevin-quant/data/ \ No newline at end of file From 3f1bf5f381b84d4542a05862728efe527759446f Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Wed, 2 Sep 2020 16:28:14 -0400 Subject: [PATCH 02/15] Update docker file --- workflows/images/scpca_r/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/workflows/images/scpca_r/Dockerfile b/workflows/images/scpca_r/Dockerfile index ef6f446..01d2e22 100644 --- a/workflows/images/scpca_r/Dockerfile +++ b/workflows/images/scpca_r/Dockerfile @@ -7,10 +7,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends apt-utils dialo # Add curl, bzip2 and dev libs RUN apt-get update -qq && apt-get -y --no-install-recommends install \ + awscli \ bzip2 \ curl \ libbz2-dev \ libgdal-dev \ + libglpk-dev \ liblzma-dev \ libreadline-dev \ libudunits2-dev @@ -29,6 +31,7 @@ RUN install2.r --error --deps TRUE \ RUN R -e "BiocManager::install(c( \ 'AnnotationHub', \ 'ensembldb', \ + 'fishpond', \ 'scran', \ 'scater', \ 'tximport'), \ From 8ddb3b1e6ab7291880986a7e719fdbd1d3e5e05d Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Wed, 2 Sep 2020 16:28:42 -0400 Subject: [PATCH 03/15] Start of instructions for using docker w/ AWS --- workflows/alevin-quant/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 workflows/alevin-quant/README.md diff --git a/workflows/alevin-quant/README.md b/workflows/alevin-quant/README.md new file mode 100644 index 0000000..2dc0b8d --- /dev/null +++ b/workflows/alevin-quant/README.md @@ -0,0 +1,11 @@ +## Docker + +Running the benchmark analysis notebook should be done via docker, with the following command to mount the local directory as the home direcory and pass in the current user's AWS credentials and launch RStudio. + +``` +docker run \ + --mount type=bind,target=/home/rstudio,source=$PWD \ + --mount type=bind,target=/home/rstudio/.aws,source=$HOME/.aws \ + -e PASSWORD= -p 8787:8787 \ + ccdl/scpca_r +``` From c82b5f40fa02d6dbed42f9140fb70b72dedbefec Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Wed, 2 Sep 2020 16:29:03 -0400 Subject: [PATCH 04/15] Initial benchmark analysis notebook --- workflows/alevin-quant/benchmark-analysis.Rmd | 138 + .../alevin-quant/benchmark-analysis.nb.html | 5798 +++++++++++++++++ 2 files changed, 5936 insertions(+) create mode 100644 workflows/alevin-quant/benchmark-analysis.Rmd create mode 100644 workflows/alevin-quant/benchmark-analysis.nb.html diff --git a/workflows/alevin-quant/benchmark-analysis.Rmd b/workflows/alevin-quant/benchmark-analysis.Rmd new file mode 100644 index 0000000..6d75bbe --- /dev/null +++ b/workflows/alevin-quant/benchmark-analysis.Rmd @@ -0,0 +1,138 @@ +--- +title: "Alevin Index comparisons" +author: "Joshua Shapiro for CCDL" +output: html_notebook +--- + +This notebook contains analysis of some intial benchmark in runs of Alevin usign different index files, looking at mapping rates. + +### Load Libraries +```{r setup} +library(ggplot2) +library(magrittr) +library(SingleCellExperiment) +library(tximport) +``` + +### File and directory setup +```{r} +data_dir <- file.path("data", "alevin-quant") +dir.create(data_dir, recursive = TRUE, showWarnings = FALSE) + +quant_s3 <- "s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant" + +``` + + + + +## Sync S3 files + +```{r} +sync_call <- paste("aws s3 sync", quant_s3, data_dir) +system(sync_call) + +``` + +Get the sample list and make a data frame with sample info + +```{r} +quant_dirs <- list.dirs(data_dir, full.names = FALSE, recursive = FALSE) + +# split ids into components for later processing +quant_info <- data.frame (quant_dir = quant_dirs, info = quant_dirs) %>% + tidyr::separate(info, sep = "[-]", + into = c("sample", "index_type")) %>% + tidyr::separate(index_type, + into = c("index_content", "kmer", "sa"), + extra = "drop") %>% + dplyr::mutate(kmer = stringr::str_remove(kmer, "k")) + +``` + +## Get Annotations from AnnotationHub + +```{r} +hub = AnnotationHub::AnnotationHub(ask = FALSE) +# Ensembl v100 Homo Sapiens is AH79689 +ensdb = hub[["AH79689"]] +ensg <- genes(ensdb) +``` + +Create vectors of mitochondiral genes and coding genes for later. + +```{r} +# create the mitochondrial gene list +mito_genes <- ensg[seqnames(ensg) == 'MT']$gene_id + +coding_genes <- ensg[ensg$gene_biotype == "protein_coding"]$gene_id +``` + + + +# Process Alevin quantifications + +## tximport and make SCEs + +```{r} +sces <- quant_dirs %>% + purrr::map( + ~ tximport(file.path(data_dir, .x, "alevin", "quants_mat.gz"), + type = "alevin")) %>% + purrr::map( + ~ SingleCellExperiment(list(counts = .x$counts))) + +# add names +names(sces) <- quant_dirs +``` + + +Calculate cell and feature QC statistics for each sample. + +```{r} +sces <- sces %>% + purrr::map( + ~ scater::addPerCellQC( + .x, + subsets = list(mito = mito_genes[mito_genes %in% rownames(.x)], + ncRNA = rownames(.x)[!rownames(.x) %in% coding_genes] ) + ) + ) %>% + purrr::map(scater::addPerFeatureQC) +``` + +Combine all cell QC stats into a single data frame +```{r} +sce_cell_qc <- purrr::map_df(sces, + ~ as.data.frame(colData(.x)) %>% + tibble::rownames_to_column(var = "cell_id"), + .id = "quant_id") %>% + dplyr::left_join(quant_info, by = c("quant_id" = "quant_dir")) +``` + + +Combine all feature QC stats into a single data frame. +```{r} +sce_feature_qc <- purrr::map_df(sces, + ~ as.data.frame(rowData(.x)) %>% + tibble::rownames_to_column(var = "gene_id"), + .id = "quant_id") %>% + dplyr::left_join(quant_info, by = c("quant_id" = "quant_dir")) +``` + +## Plotting the QC stats + +Plot cell QC gene accumulation curves & mito fraction +```{r} +ggplot(sce_cell_qc %>% dplyr::filter(kmer == "31"), + aes(x = sum, y = detected, color = subsets_mito_percent)) + + geom_point() + + facet_grid(sample ~ paste(index_content, sa) ) + + scale_color_viridis_c() + + scale_x_log10() + + scale_y_log10() + +``` + + + diff --git a/workflows/alevin-quant/benchmark-analysis.nb.html b/workflows/alevin-quant/benchmark-analysis.nb.html new file mode 100644 index 0000000..cc85e33 --- /dev/null +++ b/workflows/alevin-quant/benchmark-analysis.nb.html @@ -0,0 +1,5798 @@ + + + + + + + + + + + + + + +Alevin Index comparisons + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +

This notebook contains analysis of some intial benchmark in runs of Alevin usign different index files, looking at mapping rates.

+
+

Load Libraries

+ + + +
library(ggplot2)
+library(magrittr)
+library(SingleCellExperiment)
+ + +
Loading required package: SummarizedExperiment
+Loading required package: GenomicRanges
+Loading required package: stats4
+Loading required package: BiocGenerics
+Loading required package: parallel
+
+Attaching package: ‘BiocGenerics’
+
+The following objects are masked from ‘package:parallel’:
+
+    clusterApply, clusterApplyLB, clusterCall, clusterEvalQ, clusterExport,
+    clusterMap, parApply, parCapply, parLapply, parLapplyLB, parRapply,
+    parSapply, parSapplyLB
+
+The following objects are masked from ‘package:stats’:
+
+    IQR, mad, sd, var, xtabs
+
+The following objects are masked from ‘package:base’:
+
+    anyDuplicated, append, as.data.frame, basename, cbind, colnames,
+    dirname, do.call, duplicated, eval, evalq, Filter, Find, get, grep,
+    grepl, intersect, is.unsorted, lapply, Map, mapply, match, mget, order,
+    paste, pmax, pmax.int, pmin, pmin.int, Position, rank, rbind, Reduce,
+    rownames, sapply, setdiff, sort, table, tapply, union, unique, unsplit,
+    which, which.max, which.min
+
+Loading required package: S4Vectors
+
+Attaching package: ‘S4Vectors’
+
+The following object is masked from ‘package:base’:
+
+    expand.grid
+
+Loading required package: IRanges
+Loading required package: GenomeInfoDb
+Loading required package: Biobase
+Welcome to Bioconductor
+
+    Vignettes contain introductory material; view with 'browseVignettes()'.
+    To cite Bioconductor, see 'citation("Biobase")', and for packages
+    'citation("pkgname")'.
+
+Loading required package: DelayedArray
+Loading required package: matrixStats
+
+Attaching package: ‘matrixStats’
+
+The following objects are masked from ‘package:Biobase’:
+
+    anyMissing, rowMedians
+
+
+Attaching package: ‘DelayedArray’
+
+The following objects are masked from ‘package:matrixStats’:
+
+    colMaxs, colMins, colRanges, rowMaxs, rowMins, rowRanges
+
+The following objects are masked from ‘package:base’:
+
+    aperm, apply, rowsum
+ + +
library(tximport)
+ + + +
+
+

File and directory setup

+ + + +
data_dir <- file.path("data", "alevin-quant")
+dir.create(data_dir, recursive = TRUE, showWarnings = FALSE)
+
+s3_path = "s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant"
+ + + +
+
+

Sync S3 files

+ + + +
sync_call <- paste("aws s3 sync", s3_path, data_dir)
+system(sync_call)
+ + +
Completed 2.6 KiB/~67.2 MiB (16.2 KiB/s) with ~9 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/alevin.log to data/alevin-quant/834-cdna_k23_no_sa/alevin/alevin.log
+Completed 2.6 KiB/~67.9 MiB (16.2 KiB/s) with ~11 file(s) remaining (calculating...)
+Completed 33.8 KiB/~203.1 MiB (133.5 KiB/s) with ~56 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat_rows.txt
+Completed 33.8 KiB/~270.9 MiB (133.5 KiB/s) with ~75 file(s) remaining (calculating...)
+Completed 40.6 KiB/~270.9 MiB (140.7 KiB/s) with ~77 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/predictions.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/predictions.txt
+Completed 40.6 KiB/~279.5 MiB (140.7 KiB/s) with ~81 file(s) remaining (calculating...)
+Completed 296.6 KiB/~279.5 MiB (962.8 KiB/s) with ~82 file(s) remaining (calculating...)
+Completed 426.8 KiB/~340.3 MiB (1.3 MiB/s) with ~87 file(s) remaining (calculating...)  
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/featureDump.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/featureDump.txt
+Completed 426.8 KiB/~341.3 MiB (1.3 MiB/s) with ~97 file(s) remaining (calculating...)
+Completed 427.3 KiB/~341.3 MiB (1.2 MiB/s) with ~97 file(s) remaining (calculating...)
+Completed 683.3 KiB/~341.3 MiB (1.9 MiB/s) with ~97 file(s) remaining (calculating...)
+Completed 696.9 KiB/~341.3 MiB (1.9 MiB/s) with ~97 file(s) remaining (calculating...)
+Completed 779.8 KiB/~348.9 MiB (2.0 MiB/s) with ~99 file(s) remaining (calculating...)
+Completed 1.0 MiB/~410.6 MiB (2.6 MiB/s) with ~103 file(s) remaining (calculating...) 
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat_cols.txt
+Completed 1.0 MiB/~410.6 MiB (2.6 MiB/s) with ~103 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-cdna_k23_no_sa/aux_info/alevin_meta_info.json
+Completed 1.0 MiB/~411.5 MiB (2.6 MiB/s) with ~104 file(s) remaining (calculating...)
+Completed 1.0 MiB/~411.5 MiB (2.4 MiB/s) with ~105 file(s) remaining (calculating...)
+Completed 1.3 MiB/~411.5 MiB (2.8 MiB/s) with ~109 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/whitelist.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/whitelist.txt
+Completed 1.3 MiB/~411.5 MiB (2.8 MiB/s) with ~109 file(s) remaining (calculating...)
+Completed 1.5 MiB/~411.5 MiB (3.1 MiB/s) with ~109 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/expected_bias.gz to data/alevin-quant/834-cdna_k23_no_sa/aux_info/expected_bias.gz
+Completed 1.5 MiB/~411.5 MiB (3.1 MiB/s) with ~108 file(s) remaining (calculating...)
+Completed 1.8 MiB/~411.5 MiB (3.5 MiB/s) with ~110 file(s) remaining (calculating...)
+Completed 2.0 MiB/~411.5 MiB (3.9 MiB/s) with ~111 file(s) remaining (calculating...)
+Completed 2.3 MiB/~411.5 MiB (4.4 MiB/s) with ~111 file(s) remaining (calculating...)
+Completed 2.5 MiB/~411.5 MiB (4.6 MiB/s) with ~114 file(s) remaining (calculating...)
+Completed 2.8 MiB/~411.5 MiB (5.0 MiB/s) with ~114 file(s) remaining (calculating...)
+Completed 3.0 MiB/~411.5 MiB (5.4 MiB/s) with ~115 file(s) remaining (calculating...)
+Completed 3.0 MiB/~411.5 MiB (5.1 MiB/s) with ~115 file(s) remaining (calculating...)
+Completed 3.3 MiB/~411.5 MiB (5.4 MiB/s) with ~115 file(s) remaining (calculating...)
+Completed 3.5 MiB/~412.1 MiB (5.8 MiB/s) with ~116 file(s) remaining (calculating...)
+Completed 3.8 MiB/~414.9 MiB (6.1 MiB/s) with ~118 file(s) remaining (calculating...)
+Completed 4.0 MiB/~469.1 MiB (6.2 MiB/s) with ~123 file(s) remaining (calculating...)
+Completed 4.3 MiB/~469.1 MiB (6.3 MiB/s) with ~129 file(s) remaining (calculating...)
+Completed 4.5 MiB/~469.1 MiB (6.7 MiB/s) with ~129 file(s) remaining (calculating...)
+Completed 4.8 MiB/~469.1 MiB (7.1 MiB/s) with ~129 file(s) remaining (calculating...)
+Completed 5.0 MiB/~469.8 MiB (7.2 MiB/s) with ~131 file(s) remaining (calculating...)
+Completed 5.3 MiB/~469.8 MiB (7.5 MiB/s) with ~131 file(s) remaining (calculating...)
+Completed 5.5 MiB/~469.8 MiB (7.8 MiB/s) with ~131 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/meta_info.json to data/alevin-quant/834-cdna_k23_no_sa/aux_info/meta_info.json
+Completed 5.5 MiB/~471.4 MiB (7.8 MiB/s) with ~131 file(s) remaining (calculating...)
+Completed 5.8 MiB/~472.0 MiB (8.0 MiB/s) with ~135 file(s) remaining (calculating...)
+Completed 6.0 MiB/~472.1 MiB (8.3 MiB/s) with ~137 file(s) remaining (calculating...)
+Completed 6.3 MiB/~473.1 MiB (8.6 MiB/s) with ~138 file(s) remaining (calculating...)
+Completed 6.5 MiB/~473.1 MiB (8.9 MiB/s) with ~138 file(s) remaining (calculating...)
+Completed 6.8 MiB/~527.2 MiB (9.2 MiB/s) with ~139 file(s) remaining (calculating...)
+Completed 6.9 MiB/~527.2 MiB (9.4 MiB/s) with ~139 file(s) remaining (calculating...)
+Completed 7.2 MiB/~527.9 MiB (9.6 MiB/s) with ~143 file(s) remaining (calculating...)
+Completed 7.4 MiB/~527.9 MiB (9.8 MiB/s) with ~146 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-cdna_k23_no_sa/aux_info/ambig_info.tsv
+Completed 7.4 MiB/~527.9 MiB (9.8 MiB/s) with ~146 file(s) remaining (calculating...)
+Completed 7.7 MiB/~527.9 MiB (9.9 MiB/s) with ~149 file(s) remaining (calculating...)
+Completed 7.9 MiB/~527.9 MiB (10.2 MiB/s) with ~149 file(s) remaining (calculating...)
+Completed 8.2 MiB/~528.5 MiB (10.4 MiB/s) with ~152 file(s) remaining (calculating...)
+Completed 8.4 MiB/~528.5 MiB (10.7 MiB/s) with ~152 file(s) remaining (calculating...)
+Completed 8.7 MiB/~530.3 MiB (11.0 MiB/s) with ~154 file(s) remaining (calculating...)
+Completed 8.9 MiB/~585.5 MiB (11.2 MiB/s) with ~157 file(s) remaining (calculating...)
+Completed 9.2 MiB/~585.5 MiB (11.5 MiB/s) with ~158 file(s) remaining (calculating...)
+Completed 9.4 MiB/~586.2 MiB (11.4 MiB/s) with ~162 file(s) remaining (calculating...)
+Completed 9.7 MiB/~586.2 MiB (11.6 MiB/s) with ~162 file(s) remaining (calculating...)
+Completed 9.9 MiB/~586.2 MiB (11.9 MiB/s) with ~162 file(s) remaining (calculating...)
+Completed 10.2 MiB/~586.2 MiB (12.2 MiB/s) with ~162 file(s) remaining (calculating...)
+Completed 10.4 MiB/~586.2 MiB (12.5 MiB/s) with ~162 file(s) remaining (calculating...)
+Completed 10.7 MiB/~586.2 MiB (12.8 MiB/s) with ~162 file(s) remaining (calculating...)
+Completed 10.9 MiB/~586.2 MiB (12.8 MiB/s) with ~164 file(s) remaining (calculating...)
+Completed 11.2 MiB/~586.2 MiB (13.0 MiB/s) with ~164 file(s) remaining (calculating...)
+Completed 11.4 MiB/~586.2 MiB (13.3 MiB/s) with ~164 file(s) remaining (calculating...)
+Completed 11.7 MiB/~586.2 MiB (13.6 MiB/s) with ~164 file(s) remaining (calculating...)
+Completed 11.7 MiB/~586.2 MiB (13.3 MiB/s) with ~171 file(s) remaining (calculating...)
+Completed 11.9 MiB/~642.0 MiB (13.3 MiB/s) with ~178 file(s) remaining (calculating...)
+Completed 12.2 MiB/~643.7 MiB (13.5 MiB/s) with ~179 file(s) remaining (calculating...)
+Completed 12.4 MiB/~644.4 MiB (13.5 MiB/s) with ~188 file(s) remaining (calculating...)
+Completed 12.7 MiB/~644.4 MiB (13.6 MiB/s) with ~189 file(s) remaining (calculating...)
+Completed 12.9 MiB/~644.4 MiB (13.8 MiB/s) with ~189 file(s) remaining (calculating...)
+Completed 13.2 MiB/~644.4 MiB (14.1 MiB/s) with ~189 file(s) remaining (calculating...)
+Completed 13.4 MiB/~644.4 MiB (14.3 MiB/s) with ~191 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/fld.gz to data/alevin-quant/834-cdna_k23_no_sa/aux_info/fld.gz
+Completed 13.4 MiB/~647.4 MiB (14.3 MiB/s) with ~193 file(s) remaining (calculating...)
+Completed 13.7 MiB/~648.6 MiB (14.2 MiB/s) with ~195 file(s) remaining (calculating...)
+Completed 13.9 MiB/~648.6 MiB (14.4 MiB/s) with ~195 file(s) remaining (calculating...)
+Completed 14.2 MiB/~648.6 MiB (14.7 MiB/s) with ~195 file(s) remaining (calculating...)
+Completed 14.4 MiB/~648.6 MiB (14.9 MiB/s) with ~196 file(s) remaining (calculating...)
+Completed 14.7 MiB/~702.8 MiB (15.1 MiB/s) with ~197 file(s) remaining (calculating...)
+Completed 14.9 MiB/~702.8 MiB (15.2 MiB/s) with ~197 file(s) remaining (calculating...)
+Completed 15.2 MiB/~702.8 MiB (15.3 MiB/s) with ~198 file(s) remaining (calculating...)
+Completed 15.4 MiB/~703.7 MiB (15.2 MiB/s) with ~202 file(s) remaining (calculating...)
+Completed 15.7 MiB/~703.7 MiB (15.4 MiB/s) with ~202 file(s) remaining (calculating...)
+Completed 15.9 MiB/~703.7 MiB (15.6 MiB/s) with ~202 file(s) remaining (calculating...)
+Completed 16.2 MiB/~703.7 MiB (15.9 MiB/s) with ~202 file(s) remaining (calculating...)
+Completed 16.4 MiB/~703.7 MiB (16.1 MiB/s) with ~202 file(s) remaining (calculating...)
+Completed 16.7 MiB/~703.7 MiB (16.3 MiB/s) with ~202 file(s) remaining (calculating...)
+Completed 16.9 MiB/~759.1 MiB (15.4 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 17.2 MiB/~760.0 MiB (15.3 MiB/s) with ~221 file(s) remaining (calculating...)
+Completed 17.4 MiB/~760.1 MiB (15.3 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 17.7 MiB/~760.1 MiB (15.5 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 17.9 MiB/~760.1 MiB (15.6 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 18.2 MiB/~760.1 MiB (15.7 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 18.4 MiB/~760.1 MiB (15.9 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 18.7 MiB/~760.1 MiB (16.0 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 18.9 MiB/~760.1 MiB (16.2 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 19.2 MiB/~760.1 MiB (16.2 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 19.4 MiB/~760.1 MiB (16.3 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 19.7 MiB/~760.1 MiB (16.5 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 19.9 MiB/~760.1 MiB (16.5 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 20.2 MiB/~760.1 MiB (16.7 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 20.4 MiB/~760.1 MiB (16.8 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 20.7 MiB/~760.1 MiB (16.9 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 20.9 MiB/~760.1 MiB (17.0 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 21.2 MiB/~760.1 MiB (17.1 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 21.4 MiB/~760.1 MiB (17.2 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 21.7 MiB/~760.1 MiB (17.3 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 21.9 MiB/~760.1 MiB (17.4 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 22.2 MiB/~760.1 MiB (17.6 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 22.4 MiB/~760.1 MiB (17.6 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 22.7 MiB/~760.1 MiB (17.6 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 22.9 MiB/~760.1 MiB (17.7 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 23.2 MiB/~760.1 MiB (17.8 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 23.4 MiB/~760.1 MiB (17.8 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 23.7 MiB/~760.1 MiB (18.0 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 23.9 MiB/~760.1 MiB (18.0 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 24.2 MiB/~760.1 MiB (18.1 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 24.4 MiB/~760.1 MiB (18.2 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 24.7 MiB/~760.1 MiB (18.3 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 24.9 MiB/~760.1 MiB (18.4 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 25.2 MiB/~760.1 MiB (18.5 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 25.4 MiB/~760.1 MiB (18.6 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 25.7 MiB/~760.1 MiB (18.7 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 25.9 MiB/~760.1 MiB (18.7 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 26.2 MiB/~760.1 MiB (18.8 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 26.4 MiB/~760.1 MiB (18.9 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 26.7 MiB/~760.1 MiB (19.0 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 26.9 MiB/~760.1 MiB (19.1 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 27.2 MiB/~760.1 MiB (19.1 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 27.4 MiB/~760.1 MiB (19.1 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 27.7 MiB/~760.1 MiB (19.2 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 27.7 MiB/~760.1 MiB (19.0 MiB/s) with ~225 file(s) remaining (calculating...)
+Completed 27.9 MiB/~760.1 MiB (19.2 MiB/s) with ~225 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-cdna_k23_no_sa/aux_info/observed_bias_3p.gz
+Completed 27.9 MiB/~760.1 MiB (19.2 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 28.2 MiB/~760.1 MiB (19.2 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 28.4 MiB/~760.1 MiB (19.3 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 28.7 MiB/~760.1 MiB (19.4 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 28.9 MiB/~760.1 MiB (19.4 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 29.2 MiB/~760.1 MiB (19.4 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 29.4 MiB/~760.1 MiB (19.5 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 29.7 MiB/~760.1 MiB (19.5 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 29.9 MiB/~760.1 MiB (19.6 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 30.2 MiB/~760.1 MiB (19.6 MiB/s) with ~224 file(s) remaining (calculating...)
+Completed 30.2 MiB/~760.1 MiB (19.6 MiB/s) with ~224 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/lib_format_counts.json to data/alevin-quant/834-cdna_k23_no_sa/lib_format_counts.json
+Completed 30.2 MiB/~760.1 MiB (19.6 MiB/s) with ~223 file(s) remaining (calculating...)
+Completed 30.2 MiB/~760.1 MiB (19.0 MiB/s) with ~223 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/logs/salmon_quant.log to data/alevin-quant/834-cdna_k23_no_sa/logs/salmon_quant.log
+Completed 30.2 MiB/~760.1 MiB (19.0 MiB/s) with ~222 file(s) remaining (calculating...)
+Completed 30.2 MiB/~760.1 MiB (18.6 MiB/s) with ~222 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/cmd_info.json to data/alevin-quant/834-cdna_k23_no_sa/cmd_info.json
+Completed 30.2 MiB/~760.1 MiB (18.6 MiB/s) with ~221 file(s) remaining (calculating...)
+Completed 30.2 MiB/~760.1 MiB (18.2 MiB/s) with ~221 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/libParams/flenDist.txt to data/alevin-quant/834-cdna_k23_no_sa/libParams/flenDist.txt
+Completed 30.2 MiB/~760.1 MiB (18.2 MiB/s) with ~220 file(s) remaining (calculating...)
+Completed 30.2 MiB/~760.1 MiB (17.9 MiB/s) with ~220 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/predictions.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/predictions.txt
+Completed 30.2 MiB/~760.1 MiB (17.9 MiB/s) with ~219 file(s) remaining (calculating...)
+Completed 30.3 MiB/~760.1 MiB (17.3 MiB/s) with ~219 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/featureDump.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/featureDump.txt
+Completed 30.3 MiB/~760.1 MiB (17.3 MiB/s) with ~218 file(s) remaining (calculating...)
+Completed 30.6 MiB/~760.1 MiB (17.1 MiB/s) with ~218 file(s) remaining (calculating...)
+Completed 30.8 MiB/~760.1 MiB (17.2 MiB/s) with ~218 file(s) remaining (calculating...)
+Completed 31.1 MiB/~760.1 MiB (17.3 MiB/s) with ~218 file(s) remaining (calculating...)
+Completed 31.3 MiB/~760.1 MiB (17.3 MiB/s) with ~218 file(s) remaining (calculating...)
+Completed 31.3 MiB/~760.1 MiB (17.3 MiB/s) with ~218 file(s) remaining (calculating...)
+Completed 31.6 MiB/~760.1 MiB (17.4 MiB/s) with ~218 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/alevin.log to data/alevin-quant/834-cdna_k31_full_sa/alevin/alevin.log
+Completed 31.6 MiB/~760.1 MiB (17.4 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 31.8 MiB/~760.1 MiB (17.5 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 32.1 MiB/~760.1 MiB (17.5 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 32.3 MiB/~760.1 MiB (17.6 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 32.6 MiB/~760.1 MiB (17.6 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 32.8 MiB/~760.1 MiB (17.7 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 33.1 MiB/~760.1 MiB (17.7 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 33.3 MiB/~760.1 MiB (17.8 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 33.6 MiB/~760.1 MiB (17.9 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 33.8 MiB/~760.1 MiB (17.9 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 33.9 MiB/~760.1 MiB (17.9 MiB/s) with ~217 file(s) remaining (calculating...)
+Completed 34.1 MiB/~760.1 MiB (18.0 MiB/s) with ~217 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat_rows.txt
+Completed 34.1 MiB/~760.1 MiB (18.0 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 34.4 MiB/~760.1 MiB (18.1 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 34.6 MiB/~760.1 MiB (18.0 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 34.9 MiB/~760.1 MiB (18.1 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 35.1 MiB/~760.1 MiB (18.1 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 35.4 MiB/~760.1 MiB (18.2 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 35.6 MiB/~760.1 MiB (18.2 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 35.9 MiB/~760.1 MiB (18.3 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 36.1 MiB/~760.1 MiB (18.4 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 36.4 MiB/~760.1 MiB (18.4 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 36.5 MiB/~760.1 MiB (18.5 MiB/s) with ~216 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat.gz to data/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat.gz
+Completed 36.5 MiB/~760.1 MiB (18.5 MiB/s) with ~215 file(s) remaining (calculating...)
+Completed 36.8 MiB/~760.1 MiB (18.4 MiB/s) with ~215 file(s) remaining (calculating...)
+Completed 37.0 MiB/~760.1 MiB (18.3 MiB/s) with ~215 file(s) remaining (calculating...)
+Completed 37.1 MiB/~760.1 MiB (18.3 MiB/s) with ~215 file(s) remaining (calculating...)
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat_cols.txt
+Completed 37.1 MiB/~760.1 MiB (18.3 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 37.3 MiB/~760.1 MiB (18.1 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 37.6 MiB/~760.1 MiB (18.2 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 37.8 MiB/~760.1 MiB (18.3 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 37.8 MiB/~760.1 MiB (18.2 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 38.1 MiB/~760.1 MiB (18.3 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 38.3 MiB/~760.1 MiB (18.4 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 38.6 MiB/~760.1 MiB (18.5 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 38.8 MiB/~760.1 MiB (18.6 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 38.9 MiB/~760.1 MiB (18.6 MiB/s) with ~214 file(s) remaining (calculating...)
+Completed 39.1 MiB/~761.0 MiB (18.6 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 39.4 MiB/~761.0 MiB (18.7 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 39.6 MiB/~761.0 MiB (18.8 MiB/s) with ~216 file(s) remaining (calculating...)
+Completed 39.9 MiB/763.0 MiB (18.6 MiB/s) with 218 file(s) remaining                   
+Completed 40.1 MiB/763.0 MiB (18.6 MiB/s) with 218 file(s) remaining                   
+Completed 40.4 MiB/763.0 MiB (18.7 MiB/s) with 218 file(s) remaining                   
+Completed 40.6 MiB/763.0 MiB (18.8 MiB/s) with 218 file(s) remaining                   
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/observed_bias.gz to data/alevin-quant/834-cdna_k23_no_sa/aux_info/observed_bias.gz
+Completed 40.6 MiB/763.0 MiB (18.8 MiB/s) with 217 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/whitelist.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/whitelist.txt
+Completed 40.6 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
+Completed 40.9 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
+Completed 41.1 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
+Completed 41.4 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
+Completed 41.6 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
+Completed 41.9 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
+Completed 42.1 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
+Completed 42.4 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
+Completed 42.6 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
+Completed 42.9 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
+Completed 43.1 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
+Completed 43.4 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
+Completed 43.6 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
+Completed 43.9 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
+Completed 44.1 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
+Completed 44.4 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
+Completed 44.6 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
+Completed 44.9 MiB/763.0 MiB (18.0 MiB/s) with 216 file(s) remaining
+Completed 45.1 MiB/763.0 MiB (18.0 MiB/s) with 216 file(s) remaining
+Completed 45.4 MiB/763.0 MiB (18.1 MiB/s) with 216 file(s) remaining
+Completed 45.6 MiB/763.0 MiB (18.2 MiB/s) with 216 file(s) remaining
+Completed 45.9 MiB/763.0 MiB (18.2 MiB/s) with 216 file(s) remaining
+Completed 46.1 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
+Completed 46.4 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
+Completed 46.6 MiB/763.0 MiB (18.2 MiB/s) with 216 file(s) remaining
+Completed 46.9 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
+Completed 47.1 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
+Completed 47.4 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
+Completed 47.6 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
+Completed 47.9 MiB/763.0 MiB (18.4 MiB/s) with 216 file(s) remaining
+Completed 48.1 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
+Completed 48.4 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
+Completed 48.6 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
+Completed 48.9 MiB/763.0 MiB (18.6 MiB/s) with 216 file(s) remaining
+Completed 49.1 MiB/763.0 MiB (18.6 MiB/s) with 216 file(s) remaining
+Completed 49.4 MiB/763.0 MiB (18.6 MiB/s) with 216 file(s) remaining
+Completed 49.6 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
+Completed 49.9 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
+Completed 50.1 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
+Completed 50.4 MiB/763.0 MiB (18.6 MiB/s) with 216 file(s) remaining
+Completed 50.6 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
+Completed 50.9 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
+Completed 51.1 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
+Completed 51.4 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
+Completed 51.6 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
+Completed 51.9 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
+Completed 52.1 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
+Completed 52.4 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
+Completed 52.6 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
+Completed 52.9 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
+Completed 53.1 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
+Completed 53.4 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
+Completed 53.6 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
+Completed 53.9 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
+Completed 54.1 MiB/763.0 MiB (19.1 MiB/s) with 216 file(s) remaining
+Completed 54.4 MiB/763.0 MiB (19.1 MiB/s) with 216 file(s) remaining
+Completed 54.6 MiB/763.0 MiB (19.1 MiB/s) with 216 file(s) remaining
+Completed 54.9 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
+Completed 55.1 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
+Completed 55.4 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
+Completed 55.6 MiB/763.0 MiB (19.3 MiB/s) with 216 file(s) remaining
+Completed 55.8 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
+Completed 56.1 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-cdna_k23_no_sa/alevin/quants_tier_mat.gz
+Completed 56.1 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
+Completed 56.3 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
+Completed 56.6 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
+Completed 56.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 57.1 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 57.3 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 57.6 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
+Completed 57.8 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 58.1 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 58.3 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
+Completed 58.6 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
+Completed 58.8 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 59.1 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 59.3 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
+Completed 59.6 MiB/763.0 MiB (18.6 MiB/s) with 215 file(s) remaining
+Completed 59.8 MiB/763.0 MiB (18.6 MiB/s) with 215 file(s) remaining
+Completed 60.1 MiB/763.0 MiB (18.6 MiB/s) with 215 file(s) remaining
+Completed 60.3 MiB/763.0 MiB (18.6 MiB/s) with 215 file(s) remaining
+Completed 60.6 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
+Completed 60.8 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
+Completed 61.1 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
+Completed 61.3 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
+Completed 61.6 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
+Completed 61.8 MiB/763.0 MiB (18.8 MiB/s) with 215 file(s) remaining
+Completed 62.1 MiB/763.0 MiB (18.8 MiB/s) with 215 file(s) remaining
+Completed 62.3 MiB/763.0 MiB (18.9 MiB/s) with 215 file(s) remaining
+Completed 62.6 MiB/763.0 MiB (18.8 MiB/s) with 215 file(s) remaining
+Completed 62.8 MiB/763.0 MiB (18.8 MiB/s) with 215 file(s) remaining
+Completed 63.1 MiB/763.0 MiB (18.9 MiB/s) with 215 file(s) remaining
+Completed 63.3 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 63.6 MiB/763.0 MiB (18.9 MiB/s) with 215 file(s) remaining
+Completed 63.8 MiB/763.0 MiB (18.9 MiB/s) with 215 file(s) remaining
+Completed 64.1 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 64.3 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 64.6 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
+Completed 64.8 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
+Completed 65.1 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
+Completed 65.3 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
+Completed 65.6 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
+Completed 65.8 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
+Completed 66.1 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
+Completed 66.3 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
+Completed 66.6 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
+Completed 66.8 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
+Completed 67.1 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
+Completed 67.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 67.6 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 67.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 68.1 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
+Completed 68.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 68.6 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
+Completed 68.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 69.1 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 69.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 69.6 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 69.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 70.1 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
+Completed 70.3 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
+Completed 70.6 MiB/763.0 MiB (19.5 MiB/s) with 215 file(s) remaining
+Completed 70.8 MiB/763.0 MiB (19.5 MiB/s) with 215 file(s) remaining
+Completed 71.1 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 71.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 71.6 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 71.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 72.1 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 72.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 72.6 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
+Completed 72.8 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
+Completed 73.1 MiB/763.0 MiB (19.5 MiB/s) with 215 file(s) remaining
+Completed 73.3 MiB/763.0 MiB (19.5 MiB/s) with 215 file(s) remaining
+Completed 73.4 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat.gz to data/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat.gz
+Completed 73.4 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
+Completed 73.7 MiB/763.0 MiB (19.3 MiB/s) with 214 file(s) remaining
+Completed 73.9 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
+Completed 74.2 MiB/763.0 MiB (19.3 MiB/s) with 214 file(s) remaining
+Completed 74.4 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
+Completed 74.7 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
+Completed 74.9 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
+Completed 75.2 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
+Completed 75.4 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 75.7 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 75.9 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 76.2 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 76.4 MiB/763.0 MiB (19.6 MiB/s) with 214 file(s) remaining
+Completed 76.7 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 76.9 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 77.2 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 77.4 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 77.7 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 77.9 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
+Completed 78.2 MiB/763.0 MiB (19.6 MiB/s) with 214 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-cdna_k31_full_sa/alevin/quants_tier_mat.gz
+Completed 78.2 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
+Completed 78.4 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
+Completed 78.7 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
+Completed 78.9 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
+Completed 79.2 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
+Completed 79.4 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
+Completed 79.7 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
+Completed 79.9 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
+Completed 80.2 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
+Completed 80.4 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
+Completed 80.7 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
+Completed 80.9 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
+Completed 81.2 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
+Completed 81.4 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 81.7 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 81.9 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 82.2 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
+Completed 82.4 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
+Completed 82.7 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 82.9 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 83.2 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 83.4 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 83.7 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 83.9 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 84.2 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 84.4 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 84.7 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 84.9 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
+Completed 85.2 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 85.4 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 85.7 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 85.9 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 86.2 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
+Completed 86.4 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 86.7 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 86.9 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 87.2 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 87.4 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
+Completed 87.7 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 87.9 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 88.2 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
+Completed 88.4 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
+Completed 88.7 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
+Completed 88.9 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
+Completed 89.2 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
+Completed 89.4 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
+Completed 89.7 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
+Completed 89.9 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
+Completed 90.2 MiB/763.0 MiB (20.1 MiB/s) with 213 file(s) remaining
+Completed 90.4 MiB/763.0 MiB (20.1 MiB/s) with 213 file(s) remaining
+Completed 90.7 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
+Completed 90.9 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
+Completed 91.2 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
+Completed 91.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 91.7 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
+Completed 91.9 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
+Completed 92.2 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
+Completed 92.4 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
+Completed 92.7 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 92.9 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 93.2 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 93.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 93.7 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 93.9 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 94.2 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 94.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 94.7 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 94.9 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 95.2 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 95.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 95.7 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 95.9 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 96.2 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 96.4 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 96.7 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 96.9 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 97.2 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 97.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
+Completed 97.7 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 97.9 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 98.2 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 98.4 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
+Completed 98.7 MiB/763.0 MiB (20.5 MiB/s) with 213 file(s) remaining
+Completed 98.9 MiB/763.0 MiB (20.5 MiB/s) with 213 file(s) remaining
+Completed 99.2 MiB/763.0 MiB (20.5 MiB/s) with 213 file(s) remaining
+Completed 99.4 MiB/763.0 MiB (20.5 MiB/s) with 213 file(s) remaining
+Completed 99.7 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
+Completed 99.9 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
+Completed 100.2 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
+Completed 100.4 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
+Completed 100.7 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
+Completed 100.9 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
+Completed 101.2 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
+Completed 101.4 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
+Completed 101.7 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
+Completed 101.9 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
+Completed 102.2 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
+Completed 102.4 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
+Completed 102.7 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
+Completed 102.9 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
+Completed 103.2 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
+Completed 103.4 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
+Completed 103.7 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
+Completed 103.9 MiB/763.0 MiB (20.9 MiB/s) with 213 file(s) remaining
+Completed 104.2 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
+Completed 104.4 MiB/763.0 MiB (20.9 MiB/s) with 213 file(s) remaining
+Completed 104.7 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
+Completed 104.7 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
+Completed 104.9 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/fld.gz to data/alevin-quant/834-cdna_k31_full_sa/aux_info/fld.gz
+Completed 104.9 MiB/763.0 MiB (20.8 MiB/s) with 212 file(s) remaining
+Completed 105.2 MiB/763.0 MiB (20.8 MiB/s) with 212 file(s) remaining
+Completed 105.4 MiB/763.0 MiB (20.9 MiB/s) with 212 file(s) remaining
+Completed 105.7 MiB/763.0 MiB (20.8 MiB/s) with 212 file(s) remaining
+Completed 105.7 MiB/763.0 MiB (20.7 MiB/s) with 212 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-cdna_k31_full_sa/aux_info/alevin_meta_info.json
+Completed 105.7 MiB/763.0 MiB (20.7 MiB/s) with 211 file(s) remaining
+Completed 105.9 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
+Completed 106.2 MiB/763.0 MiB (20.5 MiB/s) with 211 file(s) remaining
+Completed 106.4 MiB/763.0 MiB (20.5 MiB/s) with 211 file(s) remaining
+Completed 106.6 MiB/763.0 MiB (20.5 MiB/s) with 211 file(s) remaining
+Completed 106.8 MiB/763.0 MiB (20.5 MiB/s) with 211 file(s) remaining
+Completed 107.1 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
+Completed 107.3 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
+Completed 107.6 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
+Completed 107.6 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
+Completed 107.8 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
+Completed 108.1 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/raw_cb_frequency.txt
+Completed 108.1 MiB/763.0 MiB (20.6 MiB/s) with 210 file(s) remaining
+Completed 108.3 MiB/763.0 MiB (20.7 MiB/s) with 210 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/expected_bias.gz to data/alevin-quant/834-cdna_k31_full_sa/aux_info/expected_bias.gz
+Completed 108.3 MiB/763.0 MiB (20.7 MiB/s) with 209 file(s) remaining
+Completed 108.6 MiB/763.0 MiB (20.6 MiB/s) with 209 file(s) remaining
+Completed 108.8 MiB/763.0 MiB (20.7 MiB/s) with 209 file(s) remaining
+Completed 109.1 MiB/763.0 MiB (20.7 MiB/s) with 209 file(s) remaining
+Completed 109.1 MiB/763.0 MiB (20.6 MiB/s) with 209 file(s) remaining
+Completed 109.3 MiB/763.0 MiB (20.6 MiB/s) with 209 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/meta_info.json to data/alevin-quant/834-cdna_k31_full_sa/aux_info/meta_info.json
+Completed 109.3 MiB/763.0 MiB (20.6 MiB/s) with 208 file(s) remaining
+Completed 109.6 MiB/763.0 MiB (20.7 MiB/s) with 208 file(s) remaining
+Completed 109.8 MiB/763.0 MiB (20.7 MiB/s) with 208 file(s) remaining
+Completed 109.8 MiB/763.0 MiB (20.7 MiB/s) with 208 file(s) remaining
+Completed 110.0 MiB/763.0 MiB (20.7 MiB/s) with 208 file(s) remaining
+Completed 110.3 MiB/763.0 MiB (20.8 MiB/s) with 208 file(s) remaining
+Completed 110.5 MiB/763.0 MiB (20.8 MiB/s) with 208 file(s) remaining
+Completed 110.8 MiB/763.0 MiB (20.8 MiB/s) with 208 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-cdna_k31_full_sa/aux_info/ambig_info.tsv
+Completed 110.8 MiB/763.0 MiB (20.8 MiB/s) with 207 file(s) remaining
+Completed 111.0 MiB/763.0 MiB (20.8 MiB/s) with 207 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/observed_bias.gz to data/alevin-quant/834-cdna_k31_full_sa/aux_info/observed_bias.gz
+Completed 111.0 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
+Completed 111.0 MiB/763.0 MiB (20.7 MiB/s) with 206 file(s) remaining
+Completed 111.3 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
+Completed 111.5 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
+Completed 111.8 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
+Completed 112.0 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
+Completed 112.3 MiB/763.0 MiB (20.9 MiB/s) with 206 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-cdna_k31_full_sa/aux_info/observed_bias_3p.gz
+Completed 112.3 MiB/763.0 MiB (20.9 MiB/s) with 205 file(s) remaining
+Completed 112.5 MiB/763.0 MiB (20.9 MiB/s) with 205 file(s) remaining
+Completed 112.5 MiB/763.0 MiB (20.8 MiB/s) with 205 file(s) remaining
+Completed 112.5 MiB/763.0 MiB (20.8 MiB/s) with 205 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/lib_format_counts.json to data/alevin-quant/834-cdna_k31_full_sa/lib_format_counts.json
+Completed 112.5 MiB/763.0 MiB (20.8 MiB/s) with 204 file(s) remaining
+Completed 112.8 MiB/763.0 MiB (20.8 MiB/s) with 204 file(s) remaining
+Completed 113.0 MiB/763.0 MiB (20.9 MiB/s) with 204 file(s) remaining
+Completed 113.3 MiB/763.0 MiB (20.9 MiB/s) with 204 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/cmd_info.json to data/alevin-quant/834-cdna_k31_full_sa/cmd_info.json
+Completed 113.3 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
+Completed 113.5 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
+Completed 113.8 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
+Completed 114.0 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
+Completed 114.0 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/logs/salmon_quant.log to data/alevin-quant/834-cdna_k31_full_sa/logs/salmon_quant.log
+Completed 114.0 MiB/763.0 MiB (20.9 MiB/s) with 202 file(s) remaining
+Completed 114.0 MiB/763.0 MiB (20.8 MiB/s) with 202 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/libParams/flenDist.txt to data/alevin-quant/834-cdna_k31_full_sa/libParams/flenDist.txt
+Completed 114.0 MiB/763.0 MiB (20.8 MiB/s) with 201 file(s) remaining
+Completed 114.3 MiB/763.0 MiB (20.8 MiB/s) with 201 file(s) remaining
+Completed 114.3 MiB/763.0 MiB (20.8 MiB/s) with 201 file(s) remaining
+Completed 114.5 MiB/763.0 MiB (20.8 MiB/s) with 201 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/predictions.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/predictions.txt
+Completed 114.5 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
+Completed 114.8 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
+Completed 115.0 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
+Completed 115.3 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
+Completed 115.5 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
+Completed 115.8 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
+Completed 116.0 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
+Completed 116.3 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
+Completed 116.5 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
+Completed 116.8 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
+Completed 117.0 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
+Completed 117.3 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 117.5 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 117.8 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 118.0 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 118.3 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 118.5 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 118.5 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 118.8 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 119.0 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 119.3 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
+Completed 119.5 MiB/763.0 MiB (21.1 MiB/s) with 200 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/alevin.log to data/alevin-quant/834-cdna_k31_no_sa/alevin/alevin.log
+Completed 119.5 MiB/763.0 MiB (21.1 MiB/s) with 199 file(s) remaining
+Completed 119.8 MiB/763.0 MiB (21.1 MiB/s) with 199 file(s) remaining
+Completed 119.8 MiB/763.0 MiB (21.1 MiB/s) with 199 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat_rows.txt
+Completed 119.8 MiB/763.0 MiB (21.1 MiB/s) with 198 file(s) remaining
+Completed 120.1 MiB/763.0 MiB (21.1 MiB/s) with 198 file(s) remaining
+Completed 120.3 MiB/763.0 MiB (21.1 MiB/s) with 198 file(s) remaining
+Completed 120.4 MiB/763.0 MiB (21.1 MiB/s) with 198 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/featureDump.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/featureDump.txt
+Completed 120.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 120.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 120.9 MiB/763.0 MiB (21.0 MiB/s) with 197 file(s) remaining
+Completed 121.2 MiB/763.0 MiB (21.0 MiB/s) with 197 file(s) remaining
+Completed 121.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 121.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 121.9 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 122.2 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 122.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 122.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 122.9 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 123.2 MiB/763.0 MiB (21.0 MiB/s) with 197 file(s) remaining
+Completed 123.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 123.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 123.9 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 124.2 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 124.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 124.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 124.9 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 125.2 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 125.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
+Completed 125.7 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
+Completed 125.9 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
+Completed 126.2 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
+Completed 126.4 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
+Completed 126.7 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
+Completed 126.9 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
+Completed 127.2 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
+Completed 127.3 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat_cols.txt
+Completed 127.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 127.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 127.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 128.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 128.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 128.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 128.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 129.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 129.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 129.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 129.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 130.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 130.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 130.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 130.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 131.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 131.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 131.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 131.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 132.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 132.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 132.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 132.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 133.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 133.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 133.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 133.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 134.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 134.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 134.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 134.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 135.0 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 135.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 135.5 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 135.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 136.0 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 136.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 136.5 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 136.8 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 137.0 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 137.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 137.5 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 137.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 138.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 138.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 138.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 138.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 139.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 139.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 139.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 139.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 140.0 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 140.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 140.5 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 140.8 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 141.0 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 141.3 MiB/763.0 MiB (21.0 MiB/s) with 196 file(s) remaining
+Completed 141.5 MiB/763.0 MiB (21.0 MiB/s) with 196 file(s) remaining
+Completed 141.8 MiB/763.0 MiB (21.0 MiB/s) with 196 file(s) remaining
+Completed 142.0 MiB/763.0 MiB (21.0 MiB/s) with 196 file(s) remaining
+Completed 142.3 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 142.5 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 142.8 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 143.0 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 143.3 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 143.5 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 143.8 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 144.0 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 144.3 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 144.5 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 144.8 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 145.0 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
+Completed 145.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 145.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 145.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 146.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 146.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 146.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 146.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 147.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 147.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 147.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 147.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 148.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 148.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 148.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 148.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 149.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 149.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 149.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 149.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 150.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 150.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 150.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 150.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 151.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 151.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 151.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 151.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 152.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 152.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 152.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 152.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 153.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 153.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 153.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 153.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 154.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 154.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 154.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 154.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 155.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 155.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 155.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 155.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 156.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 156.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 156.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
+Completed 156.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 157.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 157.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 157.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 157.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 158.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 158.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 158.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 158.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 159.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
+Completed 159.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 159.5 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 159.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 160.0 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 160.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 160.5 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 160.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
+Completed 161.0 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 161.3 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 161.5 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 161.8 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 162.0 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 162.3 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 162.5 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 162.8 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
+Completed 163.0 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
+Completed 163.3 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
+Completed 163.5 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
+Completed 163.5 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
+Completed 163.7 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
+Completed 164.0 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/whitelist.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/whitelist.txt
+Completed 164.0 MiB/763.0 MiB (21.6 MiB/s) with 195 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/raw_cb_frequency.txt
+Completed 164.0 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 164.2 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 164.5 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 164.7 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 165.0 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 165.2 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 165.5 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 165.7 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 166.0 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 166.2 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 166.5 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 166.7 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 167.0 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 167.2 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
+Completed 167.5 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 167.7 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 168.0 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 168.2 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 168.5 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 168.7 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 169.0 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 169.2 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
+Completed 169.5 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 169.7 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 170.0 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 170.2 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 170.5 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
+Completed 170.7 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
+Completed 171.0 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
+Completed 171.0 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
+Completed 171.3 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat.gz to data/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat.gz
+Completed 171.3 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 171.5 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 171.8 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 172.0 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 172.3 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 172.5 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 172.8 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 173.0 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 173.3 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 173.5 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
+Completed 173.7 MiB/763.0 MiB (21.8 MiB/s) with 193 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-cdna_k31_no_sa/aux_info/ambig_info.tsv
+Completed 173.7 MiB/763.0 MiB (21.8 MiB/s) with 192 file(s) remaining
+Completed 174.0 MiB/763.0 MiB (21.8 MiB/s) with 192 file(s) remaining
+Completed 174.0 MiB/763.0 MiB (21.7 MiB/s) with 192 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/fld.gz to data/alevin-quant/834-cdna_k31_no_sa/aux_info/fld.gz
+Completed 174.0 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
+Completed 174.2 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
+Completed 174.5 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
+Completed 174.7 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
+Completed 175.0 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
+Completed 175.2 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
+Completed 175.5 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
+Completed 175.7 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
+Completed 176.0 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
+Completed 176.2 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
+Completed 176.2 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-cdna_k31_no_sa/aux_info/alevin_meta_info.json
+Completed 176.2 MiB/763.0 MiB (21.8 MiB/s) with 190 file(s) remaining
+Completed 176.5 MiB/763.0 MiB (21.8 MiB/s) with 190 file(s) remaining
+Completed 176.7 MiB/763.0 MiB (21.8 MiB/s) with 190 file(s) remaining
+Completed 176.7 MiB/763.0 MiB (21.8 MiB/s) with 190 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/meta_info.json to data/alevin-quant/834-cdna_k31_no_sa/aux_info/meta_info.json
+Completed 176.7 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
+Completed 177.0 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
+Completed 177.2 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
+Completed 177.5 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
+Completed 177.7 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
+Completed 178.0 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
+Completed 178.2 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
+Completed 178.2 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
+Completed 178.5 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/observed_bias.gz to data/alevin-quant/834-cdna_k31_no_sa/aux_info/observed_bias.gz
+Completed 178.5 MiB/763.0 MiB (21.8 MiB/s) with 188 file(s) remaining
+Completed 178.7 MiB/763.0 MiB (21.8 MiB/s) with 188 file(s) remaining
+Completed 178.7 MiB/763.0 MiB (21.8 MiB/s) with 188 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/expected_bias.gz to data/alevin-quant/834-cdna_k31_no_sa/aux_info/expected_bias.gz
+Completed 178.7 MiB/763.0 MiB (21.8 MiB/s) with 187 file(s) remaining
+Completed 179.0 MiB/763.0 MiB (21.8 MiB/s) with 187 file(s) remaining
+Completed 179.2 MiB/763.0 MiB (21.8 MiB/s) with 187 file(s) remaining
+Completed 179.2 MiB/763.0 MiB (21.8 MiB/s) with 187 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-cdna_k31_no_sa/aux_info/observed_bias_3p.gz
+Completed 179.2 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
+Completed 179.5 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
+Completed 179.7 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
+Completed 180.0 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
+Completed 180.2 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
+Completed 180.5 MiB/763.0 MiB (21.9 MiB/s) with 186 file(s) remaining
+Completed 180.7 MiB/763.0 MiB (21.9 MiB/s) with 186 file(s) remaining
+Completed 181.0 MiB/763.0 MiB (21.9 MiB/s) with 186 file(s) remaining
+Completed 181.0 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
+Completed 181.0 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/cmd_info.json to data/alevin-quant/834-cdna_k31_no_sa/cmd_info.json
+Completed 181.0 MiB/763.0 MiB (21.8 MiB/s) with 185 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/lib_format_counts.json to data/alevin-quant/834-cdna_k31_no_sa/lib_format_counts.json
+Completed 181.0 MiB/763.0 MiB (21.8 MiB/s) with 184 file(s) remaining
+Completed 181.2 MiB/763.0 MiB (21.8 MiB/s) with 184 file(s) remaining
+Completed 181.5 MiB/763.0 MiB (21.8 MiB/s) with 184 file(s) remaining
+Completed 181.7 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
+Completed 182.0 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
+Completed 182.2 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
+Completed 182.5 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
+Completed 182.7 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
+Completed 183.0 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
+Completed 183.2 MiB/763.0 MiB (22.0 MiB/s) with 184 file(s) remaining
+Completed 183.2 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/libParams/flenDist.txt to data/alevin-quant/834-cdna_k31_no_sa/libParams/flenDist.txt
+Completed 183.2 MiB/763.0 MiB (21.9 MiB/s) with 183 file(s) remaining
+Completed 183.2 MiB/763.0 MiB (21.9 MiB/s) with 183 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/logs/salmon_quant.log to data/alevin-quant/834-cdna_k31_no_sa/logs/salmon_quant.log
+Completed 183.2 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
+Completed 183.5 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
+Completed 183.7 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
+Completed 184.0 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
+Completed 184.2 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
+Completed 184.5 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
+Completed 184.7 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
+Completed 185.0 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
+Completed 185.2 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
+Completed 185.2 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
+Completed 185.5 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
+Completed 185.7 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
+Completed 185.7 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
+Completed 186.0 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/alevin.log to data/alevin-quant/834-cdna_k31_partial_sa/alevin/alevin.log
+Completed 186.0 MiB/763.0 MiB (21.9 MiB/s) with 181 file(s) remaining
+Completed 186.2 MiB/763.0 MiB (21.9 MiB/s) with 181 file(s) remaining
+Completed 186.5 MiB/763.0 MiB (21.9 MiB/s) with 181 file(s) remaining
+Completed 186.7 MiB/763.0 MiB (21.9 MiB/s) with 181 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/predictions.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/predictions.txt
+Completed 186.7 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
+Completed 187.0 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
+Completed 187.2 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
+Completed 187.5 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
+Completed 187.7 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
+Completed 188.0 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
+Completed 188.2 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
+Completed 188.5 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
+Completed 188.7 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
+Completed 189.0 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
+Completed 189.0 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
+Completed 189.3 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
+Completed 189.4 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/featureDump.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/featureDump.txt
+Completed 189.4 MiB/763.0 MiB (22.0 MiB/s) with 179 file(s) remaining
+Completed 189.6 MiB/763.0 MiB (22.0 MiB/s) with 179 file(s) remaining
+Completed 189.9 MiB/763.0 MiB (22.0 MiB/s) with 179 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat_rows.txt
+Completed 189.9 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
+Completed 190.1 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
+Completed 190.4 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
+Completed 190.6 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
+Completed 190.9 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
+Completed 191.1 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 191.4 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 191.6 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 191.9 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 192.1 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
+Completed 192.4 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 192.6 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
+Completed 192.9 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 193.1 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 193.4 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 193.6 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 193.9 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 194.1 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+Completed 194.2 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat_cols.txt
+Completed 194.2 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 194.5 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 194.7 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 195.0 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 195.2 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 195.5 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 195.7 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 196.0 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 196.2 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 196.5 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
+Completed 196.7 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
+Completed 197.0 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
+Completed 197.2 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
+Completed 197.5 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
+Completed 197.7 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
+Completed 198.0 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
+Completed 198.2 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
+Completed 198.5 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
+Completed 198.7 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-cdna_k31_no_sa/alevin/quants_tier_mat.gz
+Completed 198.7 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
+Completed 198.9 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
+Completed 199.2 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
+Completed 199.4 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
+Completed 199.7 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
+Completed 199.9 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
+Completed 200.2 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
+Completed 200.4 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
+Completed 200.7 MiB/763.0 MiB (22.1 MiB/s) with 176 file(s) remaining
+Completed 200.9 MiB/763.0 MiB (22.1 MiB/s) with 176 file(s) remaining
+Completed 201.2 MiB/763.0 MiB (22.1 MiB/s) with 176 file(s) remaining
+Completed 201.4 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
+Completed 201.7 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
+Completed 201.9 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
+Completed 202.2 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
+Completed 202.4 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
+Completed 202.7 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
+Completed 202.9 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
+Completed 203.2 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
+Completed 203.4 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
+Completed 203.7 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 203.9 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
+Completed 204.2 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 204.4 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 204.7 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 204.9 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 205.2 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 205.4 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 205.7 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 205.9 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 206.2 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 206.4 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 206.7 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 206.9 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 207.1 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 207.4 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 207.6 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 207.9 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 208.1 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 208.4 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 208.6 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 208.9 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 209.1 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
+Completed 209.4 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 209.6 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 209.9 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 210.1 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 210.4 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
+Completed 210.6 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
+Completed 210.9 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
+Completed 211.1 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
+Completed 211.4 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
+Completed 211.6 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
+Completed 211.9 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
+Completed 212.1 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
+Completed 212.4 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
+Completed 212.6 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
+Completed 212.9 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
+Completed 213.1 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
+Completed 213.4 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
+Completed 213.6 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
+Completed 213.9 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
+Completed 214.1 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
+Completed 214.4 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
+Completed 214.6 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
+Completed 214.9 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
+Completed 215.1 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
+Completed 215.4 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
+Completed 215.6 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
+Completed 215.9 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
+Completed 216.1 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
+Completed 216.1 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
+Completed 216.4 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/alevin_meta_info.json
+Completed 216.4 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
+Completed 216.6 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
+Completed 216.9 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
+Completed 217.1 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
+Completed 217.4 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
+Completed 217.6 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
+Completed 217.9 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
+Completed 218.1 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
+Completed 218.4 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
+Completed 218.6 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
+Completed 218.9 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
+Completed 219.1 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
+Completed 219.4 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
+Completed 219.6 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
+Completed 219.9 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
+Completed 220.1 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
+Completed 220.4 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
+Completed 220.6 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
+Completed 220.9 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/raw_cb_frequency.txt
+Completed 220.9 MiB/763.0 MiB (22.1 MiB/s) with 174 file(s) remaining
+Completed 221.1 MiB/763.0 MiB (22.1 MiB/s) with 174 file(s) remaining
+Completed 221.4 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
+Completed 221.6 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
+Completed 221.9 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
+Completed 222.1 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
+Completed 222.4 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
+Completed 222.6 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
+Completed 222.9 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
+Completed 223.1 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
+Completed 223.4 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
+Completed 223.6 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
+Completed 223.9 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
+Completed 224.1 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
+Completed 224.4 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
+Completed 224.6 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
+Completed 224.9 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
+Completed 225.1 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
+Completed 225.4 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
+Completed 225.6 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
+Completed 225.9 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
+Completed 226.1 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
+Completed 226.4 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
+Completed 226.6 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
+Completed 226.9 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
+Completed 227.1 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
+Completed 227.4 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
+Completed 227.6 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
+Completed 227.9 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
+Completed 228.1 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
+Completed 228.4 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
+Completed 228.6 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
+Completed 228.9 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
+Completed 229.1 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
+Completed 229.4 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
+Completed 229.6 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
+Completed 229.9 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
+Completed 230.1 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
+Completed 230.4 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
+Completed 230.6 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
+Completed 230.9 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
+Completed 231.1 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
+Completed 231.4 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
+Completed 231.6 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
+Completed 231.9 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
+Completed 232.1 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
+Completed 232.4 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
+Completed 232.6 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
+Completed 232.9 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
+Completed 233.1 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
+Completed 233.4 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
+Completed 233.6 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
+Completed 233.9 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
+Completed 234.1 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
+Completed 234.4 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
+Completed 234.6 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
+Completed 234.9 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
+Completed 235.1 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
+Completed 235.4 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
+Completed 235.6 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
+Completed 235.9 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
+Completed 236.1 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
+Completed 236.4 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
+Completed 236.5 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
+Completed 236.8 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
+Completed 237.0 MiB/763.0 MiB (23.1 MiB/s) with 174 file(s) remaining
+Completed 237.3 MiB/763.0 MiB (23.1 MiB/s) with 174 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/ambig_info.tsv
+Completed 237.3 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
+Completed 237.5 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
+Completed 237.8 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
+Completed 238.0 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
+Completed 238.3 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
+Completed 238.5 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
+Completed 238.6 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
+Completed 238.8 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
+Completed 239.1 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/whitelist.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/whitelist.txt
+Completed 239.1 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 239.3 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 239.6 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 239.8 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 240.1 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 240.3 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 240.6 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 240.8 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 241.1 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 241.3 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 241.3 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 241.6 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 241.8 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+Completed 242.1 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/expected_bias.gz to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/expected_bias.gz
+Completed 242.1 MiB/763.0 MiB (23.1 MiB/s) with 171 file(s) remaining
+Completed 242.3 MiB/763.0 MiB (23.1 MiB/s) with 171 file(s) remaining
+Completed 242.6 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+Completed 242.8 MiB/763.0 MiB (23.1 MiB/s) with 171 file(s) remaining
+Completed 243.1 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+Completed 243.3 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+Completed 243.6 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+Completed 243.8 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+Completed 244.1 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+Completed 244.1 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+Completed 244.3 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+Completed 244.6 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+Completed 244.8 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/fld.gz to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/fld.gz
+Completed 244.8 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
+Completed 245.1 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
+Completed 245.3 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
+Completed 245.6 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
+Completed 245.8 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
+Completed 246.1 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
+Completed 246.3 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
+Completed 246.3 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
+Completed 246.6 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/cmd_info.json to data/alevin-quant/834-cdna_k31_partial_sa/cmd_info.json
+Completed 246.6 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
+Completed 246.8 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
+Completed 247.1 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
+Completed 247.3 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
+Completed 247.6 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
+Completed 247.8 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
+Completed 248.1 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
+Completed 248.3 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
+Completed 248.6 MiB/763.0 MiB (23.3 MiB/s) with 169 file(s) remaining
+Completed 248.6 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
+Completed 248.8 MiB/763.0 MiB (23.3 MiB/s) with 169 file(s) remaining
+Completed 249.1 MiB/763.0 MiB (23.3 MiB/s) with 169 file(s) remaining
+Completed 249.3 MiB/763.0 MiB (23.3 MiB/s) with 169 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/observed_bias_3p.gz
+Completed 249.3 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
+Completed 249.6 MiB/763.0 MiB (23.2 MiB/s) with 168 file(s) remaining
+Completed 249.8 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
+Completed 250.1 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
+Completed 250.3 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
+Completed 250.6 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
+Completed 250.6 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
+Completed 250.8 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
+Completed 251.1 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/meta_info.json to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/meta_info.json
+Completed 251.1 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
+Completed 251.3 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
+Completed 251.6 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
+Completed 251.8 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
+Completed 252.1 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
+Completed 252.3 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
+Completed 252.6 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
+Completed 252.8 MiB/763.0 MiB (23.4 MiB/s) with 167 file(s) remaining
+Completed 252.8 MiB/763.0 MiB (23.4 MiB/s) with 167 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/observed_bias.gz to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/observed_bias.gz
+Completed 252.8 MiB/763.0 MiB (23.4 MiB/s) with 166 file(s) remaining
+Completed 253.1 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
+Completed 253.3 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
+Completed 253.6 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
+Completed 253.6 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
+Completed 253.8 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
+Completed 253.8 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
+Completed 254.1 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
+Completed 254.3 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
+Completed 254.6 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
+Completed 254.8 MiB/763.0 MiB (23.4 MiB/s) with 166 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/lib_format_counts.json to data/alevin-quant/834-cdna_k31_partial_sa/lib_format_counts.json
+Completed 254.8 MiB/763.0 MiB (23.4 MiB/s) with 165 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/libParams/flenDist.txt to data/alevin-quant/834-cdna_k31_partial_sa/libParams/flenDist.txt
+Completed 254.8 MiB/763.0 MiB (23.4 MiB/s) with 164 file(s) remaining
+Completed 255.1 MiB/763.0 MiB (23.3 MiB/s) with 164 file(s) remaining
+Completed 255.3 MiB/763.0 MiB (23.3 MiB/s) with 164 file(s) remaining
+Completed 255.6 MiB/763.0 MiB (23.3 MiB/s) with 164 file(s) remaining
+Completed 255.8 MiB/763.0 MiB (23.3 MiB/s) with 164 file(s) remaining
+Completed 256.1 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
+Completed 256.3 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
+Completed 256.6 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
+Completed 256.6 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
+Completed 256.8 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/logs/salmon_quant.log to data/alevin-quant/834-cdna_k31_partial_sa/logs/salmon_quant.log
+Completed 256.8 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
+Completed 257.1 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
+Completed 257.3 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
+Completed 257.3 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
+Completed 257.5 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/featureDump.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/featureDump.txt
+Completed 257.5 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
+Completed 257.7 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
+Completed 258.0 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
+Completed 258.2 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
+Completed 258.5 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
+Completed 258.7 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
+Completed 259.0 MiB/763.0 MiB (23.3 MiB/s) with 162 file(s) remaining
+Completed 259.2 MiB/763.0 MiB (23.3 MiB/s) with 162 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/alevin.log to data/alevin-quant/834-txome_k23_no_sa/alevin/alevin.log
+Completed 259.2 MiB/763.0 MiB (23.3 MiB/s) with 161 file(s) remaining
+Completed 259.5 MiB/763.0 MiB (23.3 MiB/s) with 161 file(s) remaining
+Completed 259.5 MiB/763.0 MiB (23.2 MiB/s) with 161 file(s) remaining
+Completed 259.5 MiB/763.0 MiB (23.2 MiB/s) with 161 file(s) remaining
+Completed 259.7 MiB/763.0 MiB (23.2 MiB/s) with 161 file(s) remaining
+Completed 260.0 MiB/763.0 MiB (23.3 MiB/s) with 161 file(s) remaining
+Completed 260.2 MiB/763.0 MiB (23.3 MiB/s) with 161 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/predictions.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/predictions.txt
+Completed 260.2 MiB/763.0 MiB (23.3 MiB/s) with 160 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat_rows.txt
+Completed 260.2 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 260.5 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 260.7 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 261.0 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 261.2 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 261.5 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 261.7 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 262.0 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 262.2 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 262.5 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 262.7 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 263.0 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 263.2 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 263.5 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 263.7 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 263.9 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+Completed 264.1 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_tier_mat.gz
+Completed 264.1 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 264.4 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 264.6 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 264.9 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 265.1 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 265.4 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 265.6 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 265.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 266.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 266.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 266.6 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 266.9 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 267.1 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 267.4 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 267.6 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 267.9 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 268.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 268.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 268.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 268.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 269.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 269.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 269.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 269.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 270.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 270.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 270.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 270.9 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
+Completed 271.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 271.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 271.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 271.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 272.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 272.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 272.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 272.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 273.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 273.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 273.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 273.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 274.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 274.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 274.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 274.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 275.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 275.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 275.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 275.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 276.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 276.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 276.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
+Completed 276.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 277.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 277.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 277.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 277.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 278.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 278.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 278.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 278.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 279.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 279.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 279.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 279.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 280.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 280.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 280.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 280.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 281.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 281.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 281.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 281.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 282.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 282.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 282.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+Completed 282.9 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
+Completed 283.1 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
+Completed 283.4 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
+Completed 283.6 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
+Completed 283.9 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
+Completed 284.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat_cols.txt
+Completed 284.1 MiB/763.0 MiB (23.5 MiB/s) with 157 file(s) remaining
+Completed 284.3 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
+Completed 284.6 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
+Completed 284.8 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
+Completed 285.1 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
+Completed 285.3 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
+Completed 285.6 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
+Completed 285.8 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
+Completed 286.1 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
+Completed 286.3 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
+Completed 286.6 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
+Completed 286.8 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat.gz to data/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat.gz
+Completed 286.8 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 287.1 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 287.3 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 287.6 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 287.8 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 288.1 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 288.3 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 288.6 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 288.8 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 289.1 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 289.3 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 289.6 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 289.8 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 290.1 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 290.3 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 290.6 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 290.8 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 291.1 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 291.3 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
+Completed 291.6 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 291.8 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 292.1 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 292.3 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 292.5 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+Completed 292.8 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/raw_cb_frequency.txt
+Completed 292.8 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
+Completed 293.0 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
+Completed 293.3 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
+Completed 293.5 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
+Completed 293.8 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
+Completed 294.0 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
+Completed 294.3 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
+Completed 294.3 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-txome_k23_no_sa/aux_info/alevin_meta_info.json
+Completed 294.3 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+Completed 294.5 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+Completed 294.8 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+Completed 295.0 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+Completed 295.3 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+Completed 295.5 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+Completed 295.8 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+Completed 296.0 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+Completed 296.3 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+Completed 296.3 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/whitelist.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/whitelist.txt
+Completed 296.3 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 296.5 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 296.8 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 297.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 297.3 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 297.5 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 297.8 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 298.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 298.3 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 298.5 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 298.8 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 299.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 299.3 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 299.5 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 299.8 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 300.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 300.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
+Completed 300.3 MiB/763.0 MiB (23.5 MiB/s) with 153 file(s) remaining
+Completed 300.5 MiB/763.0 MiB (23.5 MiB/s) with 153 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat.gz to data/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat.gz
+Completed 300.5 MiB/763.0 MiB (23.5 MiB/s) with 152 file(s) remaining
+Completed 300.5 MiB/763.0 MiB (23.4 MiB/s) with 152 file(s) remaining
+Completed 300.8 MiB/763.0 MiB (23.5 MiB/s) with 152 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/meta_info.json to data/alevin-quant/834-txome_k23_no_sa/aux_info/meta_info.json
+Completed 300.8 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
+Completed 301.0 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
+Completed 301.3 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
+Completed 301.5 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
+Completed 301.8 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
+Completed 302.0 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
+Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
+Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/expected_bias.gz to data/alevin-quant/834-txome_k23_no_sa/aux_info/expected_bias.gz
+Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 150 file(s) remaining
+Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 150 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/fld.gz to data/alevin-quant/834-txome_k23_no_sa/aux_info/fld.gz
+Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+Completed 302.5 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+Completed 302.8 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+Completed 303.0 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+Completed 303.3 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+Completed 303.5 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+Completed 303.8 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+Completed 304.0 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+Completed 304.3 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+Completed 304.3 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/observed_bias.gz to data/alevin-quant/834-txome_k23_no_sa/aux_info/observed_bias.gz
+Completed 304.3 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 304.5 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 304.8 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 305.0 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 305.3 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 305.5 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 305.8 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 306.0 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 306.3 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 306.5 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 306.8 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+Completed 306.8 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-txome_k23_no_sa/aux_info/observed_bias_3p.gz
+Completed 306.8 MiB/763.0 MiB (23.5 MiB/s) with 147 file(s) remaining
+Completed 307.0 MiB/763.0 MiB (23.4 MiB/s) with 147 file(s) remaining
+Completed 307.3 MiB/763.0 MiB (23.4 MiB/s) with 147 file(s) remaining
+Completed 307.3 MiB/763.0 MiB (23.4 MiB/s) with 147 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/libParams/flenDist.txt to data/alevin-quant/834-txome_k23_no_sa/libParams/flenDist.txt
+Completed 307.3 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 307.5 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 307.8 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 308.0 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 308.3 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 308.5 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 308.8 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 309.0 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 309.3 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 309.5 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 309.8 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+Completed 309.8 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/cmd_info.json to data/alevin-quant/834-txome_k23_no_sa/cmd_info.json
+Completed 309.8 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
+Completed 310.0 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
+Completed 310.3 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
+Completed 310.5 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
+Completed 310.8 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
+Completed 311.0 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 311.3 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 311.5 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 311.8 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 312.0 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 312.3 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 312.5 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 312.8 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
+Completed 313.0 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
+Completed 313.3 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 313.5 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 313.8 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 314.0 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 314.2 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 314.4 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+Completed 314.7 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/featureDump.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/featureDump.txt
+Completed 314.7 MiB/763.0 MiB (23.5 MiB/s) with 144 file(s) remaining
+Completed 314.8 MiB/763.0 MiB (23.5 MiB/s) with 144 file(s) remaining
+Completed 315.1 MiB/763.0 MiB (23.5 MiB/s) with 144 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-txome_k23_no_sa/aux_info/ambig_info.tsv
+Completed 315.1 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
+Completed 315.3 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
+Completed 315.6 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
+Completed 315.6 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
+Completed 315.8 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/lib_format_counts.json to data/alevin-quant/834-txome_k23_no_sa/lib_format_counts.json
+Completed 315.8 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
+Completed 316.1 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
+Completed 316.3 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
+Completed 316.6 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
+Completed 316.8 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
+Completed 317.1 MiB/763.0 MiB (23.6 MiB/s) with 142 file(s) remaining
+Completed 317.3 MiB/763.0 MiB (23.6 MiB/s) with 142 file(s) remaining
+Completed 317.3 MiB/763.0 MiB (23.6 MiB/s) with 142 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/alevin.log to data/alevin-quant/834-txome_k31_no_sa/alevin/alevin.log
+Completed 317.3 MiB/763.0 MiB (23.6 MiB/s) with 141 file(s) remaining
+Completed 317.4 MiB/763.0 MiB (23.5 MiB/s) with 141 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-txome_k23_no_sa/alevin/quants_tier_mat.gz
+Completed 317.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 317.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 317.9 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 318.2 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 318.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 318.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 318.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 319.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 319.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 319.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 319.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 320.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 320.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 320.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 320.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 321.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 321.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 321.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 321.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 322.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 322.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 322.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 322.9 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 323.2 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 323.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 323.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 323.9 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 324.2 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 324.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 324.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 324.9 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 325.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 325.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 325.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 325.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 326.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 326.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 326.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 326.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 327.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 327.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 327.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 327.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 328.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 328.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 328.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 328.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 329.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 329.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 329.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 329.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 330.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 330.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 330.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 330.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 331.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 331.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 331.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 331.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 332.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 332.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 332.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 332.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 333.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 333.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 333.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 333.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 334.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 334.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 334.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 334.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 335.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 335.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 335.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 335.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 336.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 336.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 336.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 336.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 337.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 337.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 337.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 337.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 338.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 338.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 338.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 338.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 339.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 339.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 339.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 339.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 340.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 340.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 340.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 340.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 341.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 341.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 341.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 341.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 342.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 342.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 342.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 342.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 343.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 343.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 343.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 343.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 344.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 344.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 344.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 344.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 345.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 345.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 345.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 345.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 346.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 346.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 346.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 346.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 347.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 347.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 347.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 347.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 348.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 348.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 348.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 348.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 349.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 349.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 349.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 349.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 350.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 350.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 350.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
+Completed 350.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 351.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 351.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 351.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 351.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 352.2 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 352.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
+Completed 352.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 352.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 353.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 353.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
+Completed 353.7 MiB/763.0 MiB (23.3 MiB/s) with 140 file(s) remaining
+Completed 353.9 MiB/763.0 MiB (23.3 MiB/s) with 140 file(s) remaining
+Completed 354.2 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 354.4 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 354.7 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 354.9 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 355.2 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 355.4 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 355.7 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 355.9 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 356.2 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 356.4 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 356.7 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 356.9 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 357.2 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 357.4 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 357.7 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 357.9 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
+Completed 358.2 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
+Completed 358.4 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
+Completed 358.7 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
+Completed 358.9 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
+Completed 359.2 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
+Completed 359.4 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
+Completed 359.7 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
+Completed 359.9 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
+Completed 360.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 360.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 360.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 360.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 361.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 361.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 361.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 361.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 362.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 362.4 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
+Completed 362.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 362.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 363.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 363.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 363.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 363.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 364.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 364.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 364.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 364.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 365.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 365.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 365.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 365.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 366.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 366.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 366.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 366.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 367.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 367.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 367.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 367.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 368.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 368.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 368.6 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+Completed 368.8 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/raw_cb_frequency.txt
+Completed 368.8 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
+Completed 369.1 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
+Completed 369.3 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
+Completed 369.6 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
+Completed 369.8 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
+Completed 369.8 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
+Completed 370.1 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
+Completed 370.3 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/predictions.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/predictions.txt
+Completed 370.3 MiB/763.0 MiB (23.0 MiB/s) with 138 file(s) remaining
+Completed 370.6 MiB/763.0 MiB (23.0 MiB/s) with 138 file(s) remaining
+Completed 370.8 MiB/763.0 MiB (23.0 MiB/s) with 138 file(s) remaining
+Completed 370.9 MiB/763.0 MiB (22.9 MiB/s) with 138 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/whitelist.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/whitelist.txt
+Completed 370.9 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 371.1 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 371.4 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 371.6 MiB/763.0 MiB (23.0 MiB/s) with 137 file(s) remaining
+Completed 371.9 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 372.1 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 372.4 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 372.6 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 372.9 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 373.1 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 373.4 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 373.6 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 373.7 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 373.9 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 374.2 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 374.4 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+Completed 374.7 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-txome_k31_no_sa/alevin/quants_tier_mat.gz
+Completed 374.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 374.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 375.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 375.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 375.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 375.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 376.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 376.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 376.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 376.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 377.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 377.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 377.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 377.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 378.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 378.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 378.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 378.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 379.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 379.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 379.7 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+Completed 379.9 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+Completed 380.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
+Completed 380.4 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+Completed 380.7 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+Completed 380.9 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+Completed 381.2 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+Completed 381.4 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+Completed 381.7 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+Completed 381.9 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+Completed 382.1 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat_cols.txt
+Completed 382.1 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
+Completed 382.4 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
+Completed 382.6 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
+Completed 382.9 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
+Completed 383.1 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
+Completed 383.4 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
+Completed 383.6 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
+Completed 383.7 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
+Completed 383.9 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/logs/salmon_quant.log to data/alevin-quant/834-txome_k23_no_sa/logs/salmon_quant.log
+Completed 383.9 MiB/763.0 MiB (22.8 MiB/s) with 134 file(s) remaining
+Completed 384.2 MiB/763.0 MiB (22.8 MiB/s) with 134 file(s) remaining
+Completed 384.2 MiB/763.0 MiB (22.7 MiB/s) with 134 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat_rows.txt
+Completed 384.2 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+Completed 384.4 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+Completed 384.7 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+Completed 384.9 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+Completed 385.2 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+Completed 385.4 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+Completed 385.7 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+Completed 385.9 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+Completed 385.9 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+Completed 386.1 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-txome_k31_no_sa/aux_info/ambig_info.tsv
+Completed 386.1 MiB/763.0 MiB (22.7 MiB/s) with 132 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/fld.gz to data/alevin-quant/834-txome_k31_no_sa/aux_info/fld.gz
+Completed 386.1 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
+Completed 386.3 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
+Completed 386.6 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
+Completed 386.8 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
+Completed 387.1 MiB/763.0 MiB (22.8 MiB/s) with 131 file(s) remaining
+Completed 387.3 MiB/763.0 MiB (22.8 MiB/s) with 131 file(s) remaining
+Completed 387.3 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/meta_info.json to data/alevin-quant/834-txome_k31_no_sa/aux_info/meta_info.json
+Completed 387.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 387.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 387.6 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 387.8 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 388.1 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 388.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 388.6 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 388.8 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 389.1 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 389.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 389.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 389.6 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 389.8 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 390.1 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 390.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+Completed 390.6 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-txome_k31_no_sa/aux_info/observed_bias_3p.gz
+Completed 390.6 MiB/763.0 MiB (22.7 MiB/s) with 129 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/observed_bias.gz to data/alevin-quant/834-txome_k31_no_sa/aux_info/observed_bias.gz
+Completed 390.6 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
+Completed 390.8 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
+Completed 391.1 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
+Completed 391.3 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
+Completed 391.3 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/cmd_info.json to data/alevin-quant/834-txome_k31_no_sa/cmd_info.json
+Completed 391.3 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
+Completed 391.6 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
+Completed 391.8 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
+Completed 392.1 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
+Completed 392.3 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
+Completed 392.3 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/lib_format_counts.json to data/alevin-quant/834-txome_k31_no_sa/lib_format_counts.json
+Completed 392.3 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
+Completed 392.6 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
+Completed 392.8 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
+Completed 393.1 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
+Completed 393.3 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
+Completed 393.3 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/libParams/flenDist.txt to data/alevin-quant/834-txome_k31_no_sa/libParams/flenDist.txt
+Completed 393.3 MiB/763.0 MiB (22.7 MiB/s) with 125 file(s) remaining
+Completed 393.6 MiB/763.0 MiB (22.7 MiB/s) with 125 file(s) remaining
+Completed 393.6 MiB/763.0 MiB (22.7 MiB/s) with 125 file(s) remaining
+Completed 393.8 MiB/763.0 MiB (22.7 MiB/s) with 125 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-txome_k31_no_sa/aux_info/alevin_meta_info.json
+Completed 393.8 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
+Completed 394.1 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
+Completed 394.3 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
+Completed 394.6 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
+Completed 394.8 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
+Completed 394.8 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/logs/salmon_quant.log to data/alevin-quant/834-txome_k31_no_sa/logs/salmon_quant.log
+Completed 394.8 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 395.1 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 395.3 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 395.6 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 395.8 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 395.8 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 396.1 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 396.1 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 396.3 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 396.6 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+Completed 396.8 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/expected_bias.gz to data/alevin-quant/834-txome_k31_no_sa/aux_info/expected_bias.gz
+Completed 396.8 MiB/763.0 MiB (22.7 MiB/s) with 122 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat.gz to data/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat.gz
+Completed 396.8 MiB/763.0 MiB (22.7 MiB/s) with 121 file(s) remaining
+Completed 397.1 MiB/763.0 MiB (22.7 MiB/s) with 121 file(s) remaining
+Completed 397.1 MiB/763.0 MiB (22.7 MiB/s) with 121 file(s) remaining
+Completed 397.3 MiB/763.0 MiB (22.7 MiB/s) with 121 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/predictions.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/predictions.txt
+Completed 397.3 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 397.6 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 397.8 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 398.1 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 398.3 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 398.6 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 398.8 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 398.9 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 398.9 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 399.1 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 399.4 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+Completed 399.6 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat_rows.txt
+Completed 399.6 MiB/763.0 MiB (22.7 MiB/s) with 119 file(s) remaining
+Completed 399.9 MiB/763.0 MiB (22.7 MiB/s) with 119 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/alevin.log to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/alevin.log
+Completed 399.9 MiB/763.0 MiB (22.7 MiB/s) with 118 file(s) remaining
+Completed 399.9 MiB/763.0 MiB (22.6 MiB/s) with 118 file(s) remaining
+Completed 399.9 MiB/763.0 MiB (22.6 MiB/s) with 118 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/whitelist.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/whitelist.txt
+Completed 399.9 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
+Completed 400.1 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
+Completed 400.4 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
+Completed 400.6 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
+Completed 400.9 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
+Completed 401.1 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
+Completed 401.4 MiB/763.0 MiB (22.7 MiB/s) with 117 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/expected_bias.gz
+Completed 401.4 MiB/763.0 MiB (22.7 MiB/s) with 116 file(s) remaining
+Completed 401.6 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
+Completed 401.9 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
+Completed 402.1 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
+Completed 402.4 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
+Completed 402.4 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
+Completed 402.6 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
+Completed 402.9 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
+Completed 403.1 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/featureDump.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/featureDump.txt
+Completed 403.1 MiB/763.0 MiB (22.6 MiB/s) with 115 file(s) remaining
+Completed 403.4 MiB/763.0 MiB (22.6 MiB/s) with 115 file(s) remaining
+Completed 403.4 MiB/763.0 MiB (22.6 MiB/s) with 115 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/meta_info.json to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/meta_info.json
+Completed 403.4 MiB/763.0 MiB (22.6 MiB/s) with 114 file(s) remaining
+Completed 403.5 MiB/763.0 MiB (22.6 MiB/s) with 114 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat_cols.txt
+Completed 403.5 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 403.7 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 404.0 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 404.2 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 404.5 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 404.7 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 405.0 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 405.2 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 405.5 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 405.7 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 405.7 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 406.0 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+Completed 406.2 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/fld.gz to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/fld.gz
+Completed 406.2 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 406.5 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 406.7 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 407.0 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 407.2 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 407.5 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 407.7 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 408.0 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 408.2 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 408.5 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 408.7 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 409.0 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 409.2 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
+Completed 409.5 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 409.7 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
+Completed 410.0 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
+Completed 410.0 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
+Completed 410.3 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
+Completed 410.5 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
+Completed 410.8 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
+Completed 411.0 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
+Completed 411.3 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_tier_mat.gz
+Completed 411.3 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
+Completed 411.5 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
+Completed 411.8 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
+Completed 412.0 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
+Completed 412.3 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
+Completed 412.5 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
+Completed 412.8 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
+Completed 413.0 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
+Completed 413.3 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat.gz
+Completed 413.3 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 413.5 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 413.8 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 414.0 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 414.3 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 414.5 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 414.8 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 414.9 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 415.2 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 415.4 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 415.7 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 415.9 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 416.2 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 416.4 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 416.7 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
+Completed 416.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 417.2 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 417.4 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 417.7 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 417.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 418.2 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 418.4 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 418.7 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 418.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 419.2 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 419.4 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 419.7 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 419.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 419.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+Completed 420.2 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/alevin_meta_info.json
+Completed 420.2 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
+Completed 420.4 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
+Completed 420.7 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
+Completed 420.9 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
+Completed 421.2 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
+Completed 421.4 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
+Completed 421.7 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
+Completed 421.7 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
+Completed 421.9 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/observed_bias.gz
+Completed 421.9 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
+Completed 422.2 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
+Completed 422.4 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
+Completed 422.7 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
+Completed 422.9 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/raw_cb_frequency.txt
+Completed 422.9 MiB/763.0 MiB (22.5 MiB/s) with 107 file(s) remaining
+Completed 423.2 MiB/763.0 MiB (22.5 MiB/s) with 107 file(s) remaining
+Completed 423.4 MiB/763.0 MiB (22.5 MiB/s) with 107 file(s) remaining
+Completed 423.7 MiB/763.0 MiB (22.6 MiB/s) with 107 file(s) remaining
+Completed 423.9 MiB/763.0 MiB (22.6 MiB/s) with 107 file(s) remaining
+Completed 423.9 MiB/763.0 MiB (22.6 MiB/s) with 107 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/observed_bias_3p.gz
+Completed 423.9 MiB/763.0 MiB (22.6 MiB/s) with 106 file(s) remaining
+Completed 423.9 MiB/763.0 MiB (22.6 MiB/s) with 106 file(s) remaining
+Completed 424.2 MiB/763.0 MiB (22.6 MiB/s) with 106 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/lib_format_counts.json to data/alevin-quant/905_3-cdna_k23_no_sa/lib_format_counts.json
+Completed 424.2 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
+Completed 424.4 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
+Completed 424.7 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
+Completed 424.9 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
+Completed 425.2 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
+Completed 425.4 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
+Completed 425.4 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
+Completed 425.7 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
+Completed 425.7 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/cmd_info.json to data/alevin-quant/905_3-cdna_k23_no_sa/cmd_info.json
+Completed 425.7 MiB/763.0 MiB (22.6 MiB/s) with 104 file(s) remaining
+Completed 425.9 MiB/763.0 MiB (22.6 MiB/s) with 104 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/logs/salmon_quant.log to data/alevin-quant/905_3-cdna_k23_no_sa/logs/salmon_quant.log
+Completed 425.9 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
+Completed 426.2 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
+Completed 426.4 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
+Completed 426.7 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
+Completed 426.9 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
+Completed 426.9 MiB/763.0 MiB (22.5 MiB/s) with 103 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/predictions.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/predictions.txt
+Completed 426.9 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
+Completed 427.2 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
+Completed 427.4 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
+Completed 427.7 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
+Completed 427.9 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
+Completed 428.2 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
+Completed 428.2 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/libParams/flenDist.txt to data/alevin-quant/905_3-cdna_k23_no_sa/libParams/flenDist.txt
+Completed 428.2 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
+Completed 428.5 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
+Completed 428.7 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
+Completed 429.0 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
+Completed 429.2 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
+Completed 429.5 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
+Completed 429.7 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
+Completed 429.7 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/alevin.log to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/alevin.log
+Completed 429.7 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 430.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 430.2 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 430.5 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 430.7 MiB/763.0 MiB (22.4 MiB/s) with 100 file(s) remaining
+Completed 431.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 431.2 MiB/763.0 MiB (22.4 MiB/s) with 100 file(s) remaining
+Completed 431.5 MiB/763.0 MiB (22.4 MiB/s) with 100 file(s) remaining
+Completed 431.7 MiB/763.0 MiB (22.4 MiB/s) with 100 file(s) remaining
+Completed 432.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 432.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 432.2 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 432.5 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 432.7 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 433.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+Completed 433.2 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/featureDump.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/featureDump.txt
+Completed 433.2 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
+Completed 433.5 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
+Completed 433.7 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
+Completed 433.9 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
+Completed 434.2 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/ambig_info.tsv
+Completed 434.2 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
+Completed 434.4 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
+Completed 434.7 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
+Completed 434.9 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
+Completed 435.2 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
+Completed 435.4 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
+Completed 435.4 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
+Completed 435.7 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
+Completed 435.9 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat_rows.txt
+Completed 435.9 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 436.2 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 436.4 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 436.7 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 436.9 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 437.2 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 437.4 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 437.7 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 437.9 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 438.2 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 438.4 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 438.7 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 438.9 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 439.2 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 439.4 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+Completed 439.6 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat.gz
+Completed 439.6 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+Completed 439.8 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+Completed 440.1 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+Completed 440.3 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+Completed 440.6 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+Completed 440.8 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+Completed 441.1 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+Completed 441.3 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+Completed 441.4 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+Completed 441.6 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat_cols.txt
+Completed 441.6 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
+Completed 441.9 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
+Completed 442.1 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
+Completed 442.4 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
+Completed 442.6 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
+Completed 442.9 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
+Completed 443.1 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
+Completed 443.4 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
+Completed 443.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 443.9 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 444.1 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 444.4 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 444.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 444.9 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 445.1 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 445.4 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 445.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 445.9 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 446.1 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 446.4 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 446.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+Completed 446.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_tier_mat.gz
+Completed 446.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 446.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 447.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 447.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 447.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 447.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 448.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 448.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 448.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 448.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 449.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 449.4 MiB/763.0 MiB (22.2 MiB/s) with 94 file(s) remaining
+Completed 449.6 MiB/763.0 MiB (22.2 MiB/s) with 94 file(s) remaining
+Completed 449.9 MiB/763.0 MiB (22.2 MiB/s) with 94 file(s) remaining
+Completed 450.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 450.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 450.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 450.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 451.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 451.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 451.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 451.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 452.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 452.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 452.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 452.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 453.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 453.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 453.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 453.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 454.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 454.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 454.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 454.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 455.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 455.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 455.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 455.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 456.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 456.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 456.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 456.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 457.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 457.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 457.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 457.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 458.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 458.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 458.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 458.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 459.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 459.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 459.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 459.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 460.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 460.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 460.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 460.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 461.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 461.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 461.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 461.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 462.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
+Completed 462.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 462.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 462.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 463.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 463.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 463.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 463.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 464.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 464.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 464.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 464.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 465.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 465.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 465.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 465.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 466.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 466.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 466.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 466.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 467.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 467.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 467.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 467.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 468.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 468.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 468.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 468.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 469.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 469.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 469.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 469.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 470.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 470.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 470.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 470.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 471.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 471.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 471.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 471.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 472.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 472.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 472.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 472.9 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 473.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 473.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 473.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 473.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 474.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 474.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
+Completed 474.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 474.9 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 475.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 475.4 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 475.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 475.9 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 476.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 476.4 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 476.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 476.9 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 477.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 477.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 477.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 477.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 478.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 478.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 478.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 478.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 479.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 479.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 479.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 479.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 480.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 480.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 480.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 480.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 481.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 481.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 481.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 481.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
+Completed 482.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 482.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 482.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 482.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 483.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 483.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 483.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 483.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 484.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 484.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 484.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 484.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 485.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 485.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 485.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 485.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 486.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 486.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 486.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 486.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+Completed 486.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/whitelist.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/whitelist.txt
+Completed 486.8 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 487.1 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 487.3 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 487.6 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 487.8 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 488.1 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 488.3 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 488.6 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 488.8 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 489.1 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 489.3 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 489.3 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 489.6 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+Completed 489.8 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/alevin_meta_info.json
+Completed 489.8 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
+Completed 490.1 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
+Completed 490.3 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
+Completed 490.6 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
+Completed 490.8 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
+Completed 491.1 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
+Completed 491.3 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
+Completed 491.6 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
+Completed 491.6 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/fld.gz to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/fld.gz
+Completed 491.6 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
+Completed 491.8 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
+Completed 492.1 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
+Completed 492.3 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
+Completed 492.6 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
+Completed 492.8 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
+Completed 493.1 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
+Completed 493.3 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
+Completed 493.3 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/expected_bias.gz
+Completed 493.3 MiB/763.0 MiB (22.6 MiB/s) with 90 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/raw_cb_frequency.txt
+Completed 493.3 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+Completed 493.6 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+Completed 493.8 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+Completed 494.1 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+Completed 494.3 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+Completed 494.6 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+Completed 494.8 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+Completed 495.1 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+Completed 495.3 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+Completed 495.3 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/observed_bias_3p.gz
+Completed 495.3 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 495.6 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 495.8 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 496.1 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 496.3 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 496.6 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 496.8 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 496.8 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 497.1 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 497.3 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+Completed 497.3 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/cmd_info.json to data/alevin-quant/905_3-cdna_k31_full_sa/cmd_info.json
+Completed 497.3 MiB/763.0 MiB (22.6 MiB/s) with 87 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/observed_bias.gz
+Completed 497.3 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
+Completed 497.5 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
+Completed 497.7 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
+Completed 498.0 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
+Completed 498.2 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/ambig_info.tsv
+Completed 498.2 MiB/763.0 MiB (22.6 MiB/s) with 85 file(s) remaining
+Completed 498.5 MiB/763.0 MiB (22.6 MiB/s) with 85 file(s) remaining
+Completed 498.7 MiB/763.0 MiB (22.6 MiB/s) with 85 file(s) remaining
+Completed 499.0 MiB/763.0 MiB (22.7 MiB/s) with 85 file(s) remaining
+Completed 499.2 MiB/763.0 MiB (22.7 MiB/s) with 85 file(s) remaining
+Completed 499.2 MiB/763.0 MiB (22.7 MiB/s) with 85 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/libParams/flenDist.txt to data/alevin-quant/905_3-cdna_k31_full_sa/libParams/flenDist.txt
+Completed 499.2 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
+Completed 499.5 MiB/763.0 MiB (22.6 MiB/s) with 84 file(s) remaining
+Completed 499.7 MiB/763.0 MiB (22.6 MiB/s) with 84 file(s) remaining
+Completed 499.7 MiB/763.0 MiB (22.6 MiB/s) with 84 file(s) remaining
+Completed 500.0 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
+Completed 500.2 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
+Completed 500.3 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
+Completed 500.5 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
+Completed 500.8 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
+Completed 501.0 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
+Completed 501.0 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
+Completed 501.3 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/meta_info.json to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/meta_info.json
+Completed 501.3 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
+Completed 501.5 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
+Completed 501.8 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
+Completed 502.0 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
+Completed 502.3 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
+Completed 502.5 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
+Completed 502.8 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/lib_format_counts.json to data/alevin-quant/905_3-cdna_k31_full_sa/lib_format_counts.json
+Completed 502.8 MiB/763.0 MiB (22.7 MiB/s) with 82 file(s) remaining
+Completed 503.0 MiB/763.0 MiB (22.7 MiB/s) with 82 file(s) remaining
+Completed 503.3 MiB/763.0 MiB (22.7 MiB/s) with 82 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/logs/salmon_quant.log to data/alevin-quant/905_3-cdna_k31_full_sa/logs/salmon_quant.log
+Completed 503.3 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
+Completed 503.5 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
+Completed 503.8 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
+Completed 504.0 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
+Completed 504.3 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
+Completed 504.5 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
+Completed 504.8 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
+Completed 505.0 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
+Completed 505.0 MiB/763.0 MiB (22.6 MiB/s) with 81 file(s) remaining
+Completed 505.3 MiB/763.0 MiB (22.6 MiB/s) with 81 file(s) remaining
+Completed 505.5 MiB/763.0 MiB (22.6 MiB/s) with 81 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/alevin.log to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/alevin.log
+Completed 505.5 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 505.8 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 506.0 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 506.3 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 506.5 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 506.8 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 507.0 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 507.3 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 507.5 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 507.8 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 508.0 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+Completed 508.0 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/featureDump.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/featureDump.txt
+Completed 508.0 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
+Completed 508.3 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
+Completed 508.5 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
+Completed 508.8 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
+Completed 509.0 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
+Completed 509.3 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
+Completed 509.5 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
+Completed 509.6 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
+Completed 509.9 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat_cols.txt
+Completed 509.9 MiB/763.0 MiB (22.6 MiB/s) with 78 file(s) remaining
+Completed 510.1 MiB/763.0 MiB (22.6 MiB/s) with 78 file(s) remaining
+Completed 510.4 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
+Completed 510.6 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
+Completed 510.9 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
+Completed 511.1 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
+Completed 511.4 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
+Completed 511.4 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat_rows.txt
+Completed 511.4 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+Completed 511.6 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+Completed 511.9 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+Completed 512.1 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+Completed 512.4 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+Completed 512.6 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+Completed 512.9 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+Completed 513.1 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+Completed 513.1 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+Completed 513.4 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/whitelist.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/whitelist.txt
+Completed 513.4 MiB/763.0 MiB (22.7 MiB/s) with 76 file(s) remaining
+Completed 513.6 MiB/763.0 MiB (22.7 MiB/s) with 76 file(s) remaining
+Completed 513.6 MiB/763.0 MiB (22.7 MiB/s) with 76 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/predictions.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/predictions.txt
+Completed 513.6 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
+Completed 513.9 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
+Completed 514.1 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
+Completed 514.4 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
+Completed 514.6 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
+Completed 514.6 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
+Completed 514.9 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
+Completed 515.1 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
+Completed 515.4 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/fld.gz to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/fld.gz
+Completed 515.4 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
+Completed 515.6 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
+Completed 515.9 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
+Completed 516.1 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
+Completed 516.4 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
+Completed 516.6 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
+Completed 516.6 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
+Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/observed_bias.gz
+Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 73 file(s) remaining
+Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 73 file(s) remaining
+Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 73 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/meta_info.json to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/meta_info.json
+Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 72 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/alevin_meta_info.json
+Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+Completed 517.1 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+Completed 517.4 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+Completed 517.6 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+Completed 517.9 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+Completed 518.1 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+Completed 518.4 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+Completed 518.6 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+Completed 518.9 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+Completed 519.1 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat.gz
+Completed 519.1 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
+Completed 519.4 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
+Completed 519.6 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
+Completed 519.9 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
+Completed 520.1 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
+Completed 520.4 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
+Completed 520.4 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
+Completed 520.7 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_tier_mat.gz
+Completed 520.7 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 520.9 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 521.2 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 521.4 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 521.7 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 521.9 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 522.2 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 522.4 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 522.7 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 522.9 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 523.2 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 523.4 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 523.7 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 523.9 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 524.2 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 524.4 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+Completed 524.6 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/ambig_info.tsv
+Completed 524.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 524.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 525.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 525.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 525.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 525.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 526.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 526.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 526.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 526.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 527.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 527.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 527.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 527.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 528.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 528.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 528.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 528.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 529.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 529.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 529.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 529.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 530.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 530.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 530.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 530.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 531.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 531.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 531.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 531.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 532.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 532.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 532.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 532.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 533.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 533.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 533.5 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 533.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 534.0 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 534.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 534.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 534.5 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 534.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 535.0 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+Completed 535.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/cmd_info.json to data/alevin-quant/905_3-cdna_k31_no_sa/cmd_info.json
+Completed 535.3 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 535.5 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 535.8 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 536.0 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 536.3 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 536.5 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 536.8 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 537.0 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 537.3 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 537.3 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+Completed 537.5 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/expected_bias.gz
+Completed 537.5 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
+Completed 537.8 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
+Completed 538.0 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
+Completed 538.3 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
+Completed 538.5 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
+Completed 538.5 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/logs/salmon_quant.log to data/alevin-quant/905_3-cdna_k31_no_sa/logs/salmon_quant.log
+Completed 538.5 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+Completed 538.8 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+Completed 539.0 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+Completed 539.3 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+Completed 539.5 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+Completed 539.8 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+Completed 540.0 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+Completed 540.3 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+Completed 540.5 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+Completed 540.5 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/libParams/flenDist.txt to data/alevin-quant/905_3-cdna_k31_no_sa/libParams/flenDist.txt
+Completed 540.5 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+Completed 540.8 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+Completed 541.0 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+Completed 541.3 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+Completed 541.5 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+Completed 541.8 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+Completed 542.0 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+Completed 542.3 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+Completed 542.5 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+Completed 542.5 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/lib_format_counts.json to data/alevin-quant/905_3-cdna_k31_no_sa/lib_format_counts.json
+Completed 542.5 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
+Completed 542.8 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
+Completed 543.0 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
+Completed 543.3 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
+Completed 543.5 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
+Completed 543.8 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
+Completed 544.0 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
+Completed 544.0 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
+Completed 544.3 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/featureDump.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/featureDump.txt
+Completed 544.3 MiB/763.0 MiB (22.7 MiB/s) with 62 file(s) remaining
+Completed 544.3 MiB/763.0 MiB (22.7 MiB/s) with 62 file(s) remaining
+Completed 544.6 MiB/763.0 MiB (22.7 MiB/s) with 62 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/predictions.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/predictions.txt
+Completed 544.6 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
+Completed 544.8 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
+Completed 545.1 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
+Completed 545.3 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
+Completed 545.6 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
+Completed 545.8 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
+Completed 546.1 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
+Completed 546.1 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
+Completed 546.1 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat_rows.txt
+Completed 546.1 MiB/763.0 MiB (22.7 MiB/s) with 60 file(s) remaining
+Completed 546.3 MiB/763.0 MiB (22.7 MiB/s) with 60 file(s) remaining
+Completed 546.6 MiB/763.0 MiB (22.7 MiB/s) with 60 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/alevin.log to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/alevin.log
+Completed 546.6 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
+Completed 546.8 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
+Completed 547.1 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
+Completed 547.3 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
+Completed 547.6 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
+Completed 547.8 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
+Completed 547.8 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
+Completed 548.1 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/whitelist.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/whitelist.txt
+Completed 548.1 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
+Completed 548.3 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
+Completed 548.6 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
+Completed 548.8 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
+Completed 549.1 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
+Completed 549.3 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/raw_cb_frequency.txt
+Completed 549.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 549.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 549.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 550.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 550.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 550.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 550.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 551.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 551.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 551.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 551.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 552.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 552.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 552.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 552.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 553.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 553.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 553.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 553.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 554.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 554.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+Completed 554.4 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat_cols.txt
+Completed 554.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 554.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 554.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 555.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 555.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 555.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 555.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 556.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 556.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 556.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 556.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 557.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 557.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 557.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 557.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 558.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 558.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 558.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 558.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 559.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 559.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 559.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 559.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 560.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 560.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 560.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 560.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 561.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 561.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 561.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 561.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 562.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 562.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 562.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 562.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 563.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 563.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 563.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 563.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 564.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 564.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 564.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 564.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 565.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 565.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 565.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 565.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 566.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 566.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 566.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 566.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 567.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 567.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 567.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 567.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 568.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 568.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 568.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 568.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 569.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 569.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 569.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 569.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 570.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 570.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 570.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 570.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 571.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 571.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 571.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 571.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 572.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 572.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 572.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 572.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 573.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 573.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 573.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 573.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 574.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 574.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 574.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 574.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 575.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 575.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 575.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 575.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 576.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 576.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 576.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 576.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 577.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 577.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 577.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 577.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
+Completed 578.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 578.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 578.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 578.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 579.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 579.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 579.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 579.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 580.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 580.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 580.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 580.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 581.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 581.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 581.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 581.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 582.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 582.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 582.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 582.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 583.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 583.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 583.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 583.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 584.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 584.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 584.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 584.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 585.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 585.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 585.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 585.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 586.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 586.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 586.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 586.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 587.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 587.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 587.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 587.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 588.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 588.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 588.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 588.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 589.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 589.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 589.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 589.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 590.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 590.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 590.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 590.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 591.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 591.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 591.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 591.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 592.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 592.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 592.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 592.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 593.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 593.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 593.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 593.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 594.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 594.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 594.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 594.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 595.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 595.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 595.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 595.8 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 596.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 596.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 596.6 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 596.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 597.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 597.3 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 597.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 597.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 598.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 598.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 598.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 598.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 599.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 599.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 599.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 599.8 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 600.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 600.3 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 600.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 600.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 601.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 601.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
+Completed 601.6 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 601.8 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 602.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 602.3 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 602.6 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 602.8 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+Completed 603.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/raw_cb_frequency.txt
+Completed 603.1 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 603.3 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 603.6 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 603.8 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 604.1 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 604.3 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 604.6 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 604.8 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 605.1 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 605.3 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 605.6 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+Completed 605.6 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/observed_bias_3p.gz
+Completed 605.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 605.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 606.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 606.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 606.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 606.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 607.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 607.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 607.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 607.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 608.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 608.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 608.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 608.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 609.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 609.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 609.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 609.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 610.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 610.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 610.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 610.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 611.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 611.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 611.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 611.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 612.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 612.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 612.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 612.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 613.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 613.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 613.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 613.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 614.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 614.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 614.5 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+Completed 614.7 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/ambig_info.tsv
+Completed 614.7 MiB/763.0 MiB (22.9 MiB/s) with 53 file(s) remaining
+Completed 615.0 MiB/763.0 MiB (22.9 MiB/s) with 53 file(s) remaining
+Completed 615.0 MiB/763.0 MiB (22.9 MiB/s) with 53 file(s) remaining
+Completed 615.3 MiB/763.0 MiB (22.9 MiB/s) with 53 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_tier_mat.gz
+Completed 615.3 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+Completed 615.5 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+Completed 615.8 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+Completed 616.0 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+Completed 616.3 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+Completed 616.5 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+Completed 616.8 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+Completed 617.0 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+Completed 617.3 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+Completed 617.3 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/observed_bias_3p.gz
+Completed 617.3 MiB/763.0 MiB (22.9 MiB/s) with 51 file(s) remaining
+Completed 617.3 MiB/763.0 MiB (22.9 MiB/s) with 51 file(s) remaining
+Completed 617.5 MiB/763.0 MiB (22.9 MiB/s) with 51 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/alevin_meta_info.json
+Completed 617.5 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
+Completed 617.8 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
+Completed 618.0 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
+Completed 618.3 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
+Completed 618.5 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
+Completed 618.8 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
+Completed 618.8 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/expected_bias.gz
+Completed 618.8 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
+Completed 618.8 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
+Completed 619.0 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
+Completed 619.3 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
+Completed 619.5 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
+Completed 619.8 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/observed_bias.gz
+Completed 619.8 MiB/763.0 MiB (22.9 MiB/s) with 48 file(s) remaining
+Completed 619.8 MiB/763.0 MiB (22.9 MiB/s) with 48 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/lib_format_counts.json to data/alevin-quant/905_3-cdna_k31_partial_sa/lib_format_counts.json
+Completed 619.8 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
+Completed 620.0 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
+Completed 620.3 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
+Completed 620.3 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
+Completed 620.5 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/fld.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/fld.gz
+Completed 620.5 MiB/763.0 MiB (22.9 MiB/s) with 46 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat.gz
+Completed 620.5 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
+Completed 620.7 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
+Completed 621.0 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
+Completed 621.0 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
+Completed 621.3 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/libParams/flenDist.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/libParams/flenDist.txt
+Completed 621.3 MiB/763.0 MiB (22.9 MiB/s) with 44 file(s) remaining
+Completed 621.5 MiB/763.0 MiB (22.9 MiB/s) with 44 file(s) remaining
+Completed 621.5 MiB/763.0 MiB (22.9 MiB/s) with 44 file(s) remaining
+Completed 621.8 MiB/763.0 MiB (22.9 MiB/s) with 44 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/cmd_info.json to data/alevin-quant/905_3-cdna_k31_partial_sa/cmd_info.json
+Completed 621.8 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 622.0 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 622.3 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 622.5 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 622.8 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 623.0 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 623.3 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 623.5 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 623.5 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 623.8 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 623.8 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 624.0 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+Completed 624.3 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/featureDump.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/featureDump.txt
+Completed 624.3 MiB/763.0 MiB (22.9 MiB/s) with 42 file(s) remaining
+Completed 624.5 MiB/763.0 MiB (22.9 MiB/s) with 42 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/predictions.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/predictions.txt
+Completed 624.5 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
+Completed 624.8 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
+Completed 625.0 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
+Completed 625.3 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
+Completed 625.5 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
+Completed 625.8 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
+Completed 626.0 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
+Completed 626.3 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
+Completed 626.5 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
+Completed 626.8 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
+Completed 627.0 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
+Completed 627.3 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
+Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
+Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
+Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/meta_info.json to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/meta_info.json
+Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 40 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat_rows.txt
+Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 39 file(s) remaining
+Completed 627.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 628.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 628.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 628.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 628.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 629.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 629.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 629.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 629.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 630.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 630.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 630.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 630.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 631.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 631.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 631.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 631.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 632.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 632.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 632.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 632.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+Completed 632.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/logs/salmon_quant.log to data/alevin-quant/905_3-cdna_k31_partial_sa/logs/salmon_quant.log
+Completed 632.8 MiB/763.0 MiB (22.9 MiB/s) with 38 file(s) remaining
+Completed 633.0 MiB/763.0 MiB (22.9 MiB/s) with 38 file(s) remaining
+Completed 633.2 MiB/763.0 MiB (22.9 MiB/s) with 38 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat_cols.txt
+Completed 633.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 633.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 633.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 634.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 634.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 634.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 634.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 635.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 635.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 635.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 635.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 636.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 636.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 636.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 636.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 637.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 637.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 637.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 637.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 638.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 638.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 638.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 638.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 639.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 639.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 639.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 639.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 640.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 640.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 640.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 640.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 641.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 641.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 641.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 641.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 642.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 642.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 642.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 642.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 643.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 643.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 643.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 643.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 644.0 MiB/763.0 MiB (23.0 MiB/s) with 37 file(s) remaining
+Completed 644.2 MiB/763.0 MiB (23.0 MiB/s) with 37 file(s) remaining
+Completed 644.5 MiB/763.0 MiB (23.0 MiB/s) with 37 file(s) remaining
+Completed 644.7 MiB/763.0 MiB (23.0 MiB/s) with 37 file(s) remaining
+Completed 645.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 645.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 645.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 645.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 646.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 646.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 646.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 646.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 647.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 647.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+Completed 647.5 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
+Completed 647.7 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
+Completed 648.0 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
+Completed 648.2 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
+Completed 648.5 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
+Completed 648.7 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
+Completed 649.0 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
+Completed 649.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat.gz
+Completed 649.2 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
+Completed 649.5 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
+Completed 649.7 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
+Completed 650.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 650.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 650.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 650.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 651.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 651.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 651.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 651.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 652.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 652.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 652.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 652.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 653.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 653.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 653.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 653.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 654.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 654.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 654.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 654.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 655.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 655.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 655.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 655.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 656.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 656.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 656.5 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
+Completed 656.7 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
+Completed 657.0 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
+Completed 657.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 657.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 657.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 657.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 658.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 658.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 658.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 658.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 659.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 659.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 659.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 659.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 660.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 660.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 660.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 660.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 661.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 661.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 661.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 661.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 662.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 662.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 662.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 662.9 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 663.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 663.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 663.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 663.9 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 664.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 664.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 664.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 664.9 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 665.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 665.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 665.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 665.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 666.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 666.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 666.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 666.9 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 667.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 667.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 667.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
+Completed 667.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 668.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 668.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 668.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 668.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 669.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 669.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 669.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 669.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 670.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 670.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 670.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 670.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 671.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 671.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 671.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 671.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+Completed 672.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/raw_cb_frequency.txt
+Completed 672.1 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
+Completed 672.4 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
+Completed 672.6 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
+Completed 672.9 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
+Completed 672.9 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
+Completed 673.1 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
+Completed 673.1 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
+Completed 673.4 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/whitelist.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/whitelist.txt
+Completed 673.4 MiB/763.0 MiB (22.8 MiB/s) with 34 file(s) remaining
+Completed 673.6 MiB/763.0 MiB (22.8 MiB/s) with 34 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_tier_mat.gz
+Completed 673.6 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+Completed 673.9 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+Completed 674.1 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+Completed 674.4 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+Completed 674.6 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+Completed 674.9 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+Completed 675.1 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+Completed 675.4 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+Completed 675.6 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+Completed 675.6 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/meta_info.json to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/meta_info.json
+Completed 675.6 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
+Completed 675.9 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
+Completed 676.1 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
+Completed 676.4 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
+Completed 676.4 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
+Completed 676.6 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
+Completed 676.9 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
+Completed 677.1 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/observed_bias.gz
+Completed 677.1 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
+Completed 677.4 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
+Completed 677.6 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
+Completed 677.6 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
+Completed 677.9 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
+Completed 678.1 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/alevin_meta_info.json
+Completed 678.1 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
+Completed 678.4 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
+Completed 678.6 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
+Completed 678.9 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
+Completed 679.1 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
+Completed 679.4 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
+Completed 679.4 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
+Completed 679.6 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
+Completed 679.9 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/alevin.log to data/alevin-quant/905_3-txome_k23_no_sa/alevin/alevin.log
+Completed 679.9 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
+Completed 680.1 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
+Completed 680.1 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
+Completed 680.4 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
+Completed 680.6 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/fld.gz to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/fld.gz
+Completed 680.6 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+Completed 680.9 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+Completed 681.1 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+Completed 681.4 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+Completed 681.6 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+Completed 681.9 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+Completed 682.1 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+Completed 682.4 MiB/763.0 MiB (22.9 MiB/s) with 28 file(s) remaining
+Completed 682.6 MiB/763.0 MiB (22.9 MiB/s) with 28 file(s) remaining
+Completed 682.9 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+Completed 683.1 MiB/763.0 MiB (22.9 MiB/s) with 28 file(s) remaining
+Completed 683.1 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+Completed 683.3 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/expected_bias.gz
+Completed 683.3 MiB/763.0 MiB (22.8 MiB/s) with 27 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/ambig_info.tsv
+Completed 683.3 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
+Completed 683.3 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
+Completed 683.5 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
+Completed 683.8 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
+Completed 684.0 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
+Completed 684.3 MiB/763.0 MiB (22.9 MiB/s) with 26 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/observed_bias_3p.gz
+Completed 684.3 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
+Completed 684.5 MiB/763.0 MiB (22.8 MiB/s) with 25 file(s) remaining
+Completed 684.8 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
+Completed 685.0 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
+Completed 685.3 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
+Completed 685.3 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
+Completed 685.5 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
+Completed 685.8 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/libParams/flenDist.txt to data/alevin-quant/905_3-txome_k23_no_sa/libParams/flenDist.txt
+Completed 685.8 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
+Completed 685.8 MiB/763.0 MiB (22.8 MiB/s) with 24 file(s) remaining
+Completed 686.0 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
+Completed 686.3 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
+Completed 686.5 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
+Completed 686.5 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
+Completed 686.8 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
+Completed 687.0 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/lib_format_counts.json to data/alevin-quant/905_3-txome_k23_no_sa/lib_format_counts.json
+Completed 687.0 MiB/763.0 MiB (22.9 MiB/s) with 23 file(s) remaining
+Completed 687.3 MiB/763.0 MiB (22.9 MiB/s) with 23 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/cmd_info.json to data/alevin-quant/905_3-txome_k23_no_sa/cmd_info.json
+Completed 687.3 MiB/763.0 MiB (22.9 MiB/s) with 22 file(s) remaining
+Completed 687.5 MiB/763.0 MiB (22.9 MiB/s) with 22 file(s) remaining
+Completed 687.5 MiB/763.0 MiB (22.9 MiB/s) with 22 file(s) remaining
+Completed 687.8 MiB/763.0 MiB (22.9 MiB/s) with 22 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/logs/salmon_quant.log to data/alevin-quant/905_3-txome_k23_no_sa/logs/salmon_quant.log
+Completed 687.8 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
+Completed 688.0 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
+Completed 688.3 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
+Completed 688.5 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
+Completed 688.8 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
+Completed 689.0 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
+Completed 689.3 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
+Completed 689.3 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat_rows.txt
+Completed 689.3 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+Completed 689.5 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+Completed 689.8 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+Completed 690.0 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+Completed 690.3 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+Completed 690.5 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+Completed 690.8 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+Completed 691.0 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+Completed 691.3 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+Completed 691.3 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/alevin.log to data/alevin-quant/905_3-txome_k31_no_sa/alevin/alevin.log
+Completed 691.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 691.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 691.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 692.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 692.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 692.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 692.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 693.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 693.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 693.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 693.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 694.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 694.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 694.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 694.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 695.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 695.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 695.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 695.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 696.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 696.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 696.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 696.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 697.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 697.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 697.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 697.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 698.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
+Completed 698.3 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
+Completed 698.5 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
+Completed 698.8 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
+Completed 699.0 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
+Completed 699.3 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
+Completed 699.5 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
+Completed 699.6 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_tier_mat.gz
+Completed 699.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 699.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 700.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 700.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 700.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 700.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 701.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 701.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 701.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 701.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 702.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 702.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 702.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 702.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 703.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 703.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 703.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 703.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 704.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 704.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 704.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 704.8 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 705.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 705.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 705.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 705.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 706.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 706.3 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 706.6 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 706.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 707.1 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 707.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 707.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 707.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 708.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 708.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 708.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 708.8 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 709.1 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 709.3 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 709.6 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 709.8 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 710.1 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
+Completed 710.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 710.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 710.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 711.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 711.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 711.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 711.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 712.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 712.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 712.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 712.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 713.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 713.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 713.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 713.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 714.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 714.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 714.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 714.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 715.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 715.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 715.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 715.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+Completed 715.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/whitelist.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/whitelist.txt
+Completed 715.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 716.1 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 716.3 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 716.6 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 716.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 717.1 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 717.3 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 717.6 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 717.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 717.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 718.1 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 718.3 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 718.6 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 718.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+Completed 719.1 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/alevin_meta_info.json
+Completed 719.1 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 719.3 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 719.6 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 719.8 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 720.1 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 720.3 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 720.6 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 720.8 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
+Completed 721.1 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
+Completed 721.3 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 721.6 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
+Completed 721.8 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 722.1 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
+Completed 722.1 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 722.3 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
+Completed 722.6 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
+Completed 722.8 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
+Completed 723.1 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
+Completed 723.3 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
+Completed 723.6 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/expected_bias.gz
+Completed 723.6 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 723.8 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 724.1 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 724.3 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 724.6 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 724.8 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 725.0 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 725.2 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 725.5 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 725.7 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 726.0 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 726.2 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 726.5 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+Completed 726.5 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/raw_cb_frequency.txt
+Completed 726.5 MiB/763.0 MiB (23.1 MiB/s) with 14 file(s) remaining
+Completed 726.7 MiB/763.0 MiB (23.1 MiB/s) with 14 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/fld.gz to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/fld.gz
+Completed 726.7 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
+Completed 726.7 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
+Completed 727.0 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
+Completed 727.2 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
+Completed 727.5 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
+Completed 727.7 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
+Completed 728.0 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/meta_info.json to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/meta_info.json
+Completed 728.0 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 728.2 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 728.5 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 728.7 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 729.0 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 729.2 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 729.5 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 729.7 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 729.7 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 730.0 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+Completed 730.2 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/observed_bias.gz
+Completed 730.2 MiB/763.0 MiB (23.1 MiB/s) with 11 file(s) remaining
+Completed 730.2 MiB/763.0 MiB (23.1 MiB/s) with 11 file(s) remaining
+Completed 730.5 MiB/763.0 MiB (23.1 MiB/s) with 11 file(s) remaining
+Completed 730.7 MiB/763.0 MiB (23.1 MiB/s) with 11 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/observed_bias_3p.gz
+Completed 730.7 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 731.0 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 731.2 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 731.5 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 731.7 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 732.0 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 732.2 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 732.5 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 732.5 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 732.5 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+Completed 732.7 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/cmd_info.json to data/alevin-quant/905_3-txome_k31_no_sa/cmd_info.json
+Completed 732.7 MiB/763.0 MiB (23.1 MiB/s) with 9 file(s) remaining
+Completed 733.0 MiB/763.0 MiB (23.1 MiB/s) with 9 file(s) remaining
+Completed 733.2 MiB/763.0 MiB (23.1 MiB/s) with 9 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/libParams/flenDist.txt to data/alevin-quant/905_3-txome_k31_no_sa/libParams/flenDist.txt
+Completed 733.2 MiB/763.0 MiB (23.1 MiB/s) with 8 file(s) remaining
+Completed 733.5 MiB/763.0 MiB (23.1 MiB/s) with 8 file(s) remaining
+Completed 733.7 MiB/763.0 MiB (23.1 MiB/s) with 8 file(s) remaining
+Completed 733.9 MiB/763.0 MiB (23.1 MiB/s) with 8 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/ambig_info.tsv
+Completed 733.9 MiB/763.0 MiB (23.1 MiB/s) with 7 file(s) remaining
+Completed 734.1 MiB/763.0 MiB (23.1 MiB/s) with 7 file(s) remaining
+Completed 734.1 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
+Completed 734.1 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
+Completed 734.4 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
+Completed 734.4 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
+Completed 734.6 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/lib_format_counts.json to data/alevin-quant/905_3-txome_k31_no_sa/lib_format_counts.json
+Completed 734.6 MiB/763.0 MiB (23.0 MiB/s) with 6 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/logs/salmon_quant.log to data/alevin-quant/905_3-txome_k31_no_sa/logs/salmon_quant.log
+Completed 734.6 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 734.9 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 735.1 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 735.4 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 735.6 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 735.9 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 736.1 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 736.4 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 736.6 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 736.7 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 736.9 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 737.2 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 737.4 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 737.7 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 737.9 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 738.2 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+Completed 738.4 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/predictions.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/predictions.txt
+Completed 738.4 MiB/763.0 MiB (23.0 MiB/s) with 4 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/featureDump.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/featureDump.txt
+Completed 738.4 MiB/763.0 MiB (23.0 MiB/s) with 3 file(s) remaining
+Completed 738.7 MiB/763.0 MiB (23.0 MiB/s) with 3 file(s) remaining
+Completed 738.9 MiB/763.0 MiB (23.0 MiB/s) with 3 file(s) remaining
+Completed 739.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 739.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 739.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 739.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 740.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 740.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 740.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 740.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 741.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 741.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 741.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 741.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 742.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 742.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 742.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 742.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 743.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 743.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 743.7 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
+Completed 743.9 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
+Completed 744.2 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
+Completed 744.4 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
+Completed 744.7 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
+Completed 744.9 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
+Completed 745.2 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
+Completed 745.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 745.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 745.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 746.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 746.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 746.6 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 746.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 747.1 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 747.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+Completed 747.6 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat_cols.txt
+Completed 747.6 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 747.9 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 748.1 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 748.4 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 748.6 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 748.9 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 749.1 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 749.4 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 749.6 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 749.9 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 750.1 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 750.4 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 750.6 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 750.9 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 751.1 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 751.4 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 751.6 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 751.8 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 752.0 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 752.3 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 752.5 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 752.8 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 753.0 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 753.3 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 753.5 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 753.8 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 754.0 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 754.3 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 754.5 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 754.8 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 755.0 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 755.3 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 755.5 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
+Completed 755.8 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 756.0 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 756.2 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+Completed 756.5 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat.gz
+Completed 756.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 756.7 MiB/763.0 MiB (22.8 MiB/s) with 1 file(s) remaining
+Completed 757.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 757.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 757.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 757.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 758.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 758.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 758.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 758.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 759.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 759.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 759.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 759.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 760.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 760.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 760.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 760.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 761.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 761.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 761.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 761.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 762.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 762.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 762.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 762.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+Completed 763.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
+download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/raw_cb_frequency.txt
+ + + +

Get the sample list and make a data frame with sample info

+ + + +
quant_dirs <- list.dirs(data_dir, full.names = FALSE, recursive = FALSE)
+
+quant_info <- data.frame (quant_dir = quant_dirs, info = quant_dirs) %>%
+  tidyr::separate(info, sep = "[-]", 
+                  into = c("sample", "index_type")) %>%
+  tidyr::separate(index_type, 
+                  into = c("index_content", "kmer", "sa"), 
+                  extra = "drop") %>%
+  dplyr::mutate(kmer = stringr::str_remove(kmer, "k"))
+  
+ + + +
+
+

Get Annotations from AnnotationHub

+ + + +
hub = AnnotationHub::AnnotationHub(ask = FALSE)
+# Ensembl v100 Homo Sapiens is AH79689
+ensdb = hub[["AH79689"]]
+ensg <- genes(ensdb)
+ + + +

Create vectors of mitochondiral genes and coding genes for later.

+ + + +
# create the mitochondrial gene list
+mito_genes <- ensg[seqnames(ensg) == 'MT']$gene_id
+
+coding_genes <- ensg[ensg$gene_biotype == "protein_coding"]$gene_id
+ + + +
+
+

Process Alevin quantifications

+
+

tximport and make SCEs

+ + + +
sces <- quant_dirs %>%
+  purrr::map(
+    ~ tximport(file.path(data_dir, .x, "alevin", "quants_mat.gz"),
+               type = "alevin")) %>%
+  purrr::map(
+    ~ SingleCellExperiment(list(counts = .x$counts))) 
+ + +
reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+reading in alevin gene-level counts across cells with fishpond
+ + +
# add names
+names(sces) <- quant_dirs
+ + + +

Calculate cell and feature QC statistics for each sample.

+ + + +
sces <- sces %>% 
+  purrr::map(
+    ~ scater::addPerCellQC(
+      .x,
+      subsets = list(mito = mito_genes[mito_genes %in% rownames(.x)],
+                     ncRNA = rownames(.x)[!rownames(.x) %in% coding_genes] )
+    ) 
+  ) %>%
+  purrr::map(scater::addPerFeatureQC)
+ + + +

Combine all cell QC stats into a single data frame

+ + + +
sce_cell_qc <- purrr::map_df(sces, 
+                        ~ as.data.frame(colData(.x)) %>%
+                          tibble::rownames_to_column(var = "cell_id"), 
+                        .id = "quant_id") %>%
+  dplyr::left_join(quant_info, by = c("quant_id" = "quant_dir"))
+ + + +

Combine all feature QC stats into a single data frame.

+ + + +
sce_feature_qc <- purrr::map_df(sces, 
+                        ~ as.data.frame(rowData(.x)) %>%
+                          tibble::rownames_to_column(var = "gene_id"), 
+                        .id = "quant_id") %>%
+  dplyr::left_join(quant_info, by = c("quant_id" = "quant_dir"))
+ + + +
+
+

Plotting the QC stats

+

Plot cell QC gene accumulation curves & mito fraction

+ + + +
ggplot(sce_cell_qc %>% dplyr::filter(kmer == "31"), 
+       aes(x = sum, y = detected, color = subsets_mito_percent)) +
+  geom_point() +
+  facet_grid(sample ~ paste(index_content, sa) ) +
+  scale_color_viridis_c() +
+  scale_x_log10() +
+  scale_y_log10()
+ + +

+ + +
NA
+ + + + +
+
+ +
LS0tCnRpdGxlOiAiQWxldmluIEluZGV4IGNvbXBhcmlzb25zIgphdXRob3I6ICJKb3NodWEgU2hhcGlybyBmb3IgQ0NETCIKb3V0cHV0OiBodG1sX25vdGVib29rCi0tLQoKVGhpcyBub3RlYm9vayBjb250YWlucyBhbmFseXNpcyBvZiBzb21lIGludGlhbCBiZW5jaG1hcmsgaW4gcnVucyBvZiBBbGV2aW4gdXNpZ24gZGlmZmVyZW50IGluZGV4IGZpbGVzLCBsb29raW5nIGF0IG1hcHBpbmcgcmF0ZXMuCgojIyMgTG9hZCBMaWJyYXJpZXMKYGBge3Igc2V0dXB9CmxpYnJhcnkoZ2dwbG90MikKbGlicmFyeShtYWdyaXR0cikKbGlicmFyeShTaW5nbGVDZWxsRXhwZXJpbWVudCkKbGlicmFyeSh0eGltcG9ydCkKYGBgCgojIyMgRmlsZSBhbmQgZGlyZWN0b3J5IHNldHVwCmBgYHtyfQpkYXRhX2RpciA8LSBmaWxlLnBhdGgoImRhdGEiLCAiYWxldmluLXF1YW50IikKZGlyLmNyZWF0ZShkYXRhX2RpciwgcmVjdXJzaXZlID0gVFJVRSwgc2hvd1dhcm5pbmdzID0gRkFMU0UpCgpxdWFudF9zMyA8LSAiczM6Ly9uZXh0Zmxvdy1jY2RsLXJlc3VsdHMvc2NwY2EtYmVuY2htYXJrL2FsZXZpbi1xdWFudCIKCmBgYAoKCgoKIyMgU3luYyBTMyBmaWxlcwoKYGBge3J9CnN5bmNfY2FsbCA8LSBwYXN0ZSgiYXdzIHMzIHN5bmMiLCBxdWFudF9zMywgZGF0YV9kaXIpCnN5c3RlbShzeW5jX2NhbGwpCgpgYGAKCkdldCB0aGUgc2FtcGxlIGxpc3QgYW5kIG1ha2UgYSBkYXRhIGZyYW1lIHdpdGggc2FtcGxlIGluZm8KCmBgYHtyfQpxdWFudF9kaXJzIDwtIGxpc3QuZGlycyhkYXRhX2RpciwgZnVsbC5uYW1lcyA9IEZBTFNFLCByZWN1cnNpdmUgPSBGQUxTRSkKCiMgc3BsaXQgaWRzIGludG8gY29tcG9uZW50cyBmb3IgbGF0ZXIgcHJvY2Vzc2luZwpxdWFudF9pbmZvIDwtIGRhdGEuZnJhbWUgKHF1YW50X2RpciA9IHF1YW50X2RpcnMsIGluZm8gPSBxdWFudF9kaXJzKSAlPiUKICB0aWR5cjo6c2VwYXJhdGUoaW5mbywgc2VwID0gIlstXSIsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygic2FtcGxlIiwgImluZGV4X3R5cGUiKSkgJT4lCiAgdGlkeXI6OnNlcGFyYXRlKGluZGV4X3R5cGUsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygiaW5kZXhfY29udGVudCIsICJrbWVyIiwgInNhIiksIAogICAgICAgICAgICAgICAgICBleHRyYSA9ICJkcm9wIikgJT4lCiAgZHBseXI6Om11dGF0ZShrbWVyID0gc3RyaW5ncjo6c3RyX3JlbW92ZShrbWVyLCAiayIpKQogIApgYGAKCiMjIEdldCBBbm5vdGF0aW9ucyBmcm9tIEFubm90YXRpb25IdWIKCmBgYHtyfQpodWIgPSBBbm5vdGF0aW9uSHViOjpBbm5vdGF0aW9uSHViKGFzayA9IEZBTFNFKQojIEVuc2VtYmwgdjEwMCBIb21vIFNhcGllbnMgaXMgQUg3OTY4OQplbnNkYiA9IGh1YltbIkFINzk2ODkiXV0KZW5zZyA8LSBnZW5lcyhlbnNkYikKYGBgCgpDcmVhdGUgdmVjdG9ycyBvZiBtaXRvY2hvbmRpcmFsIGdlbmVzIGFuZCBjb2RpbmcgZ2VuZXMgZm9yIGxhdGVyLgoKYGBge3J9CiMgY3JlYXRlIHRoZSBtaXRvY2hvbmRyaWFsIGdlbmUgbGlzdAptaXRvX2dlbmVzIDwtIGVuc2dbc2VxbmFtZXMoZW5zZykgPT0gJ01UJ10kZ2VuZV9pZAoKY29kaW5nX2dlbmVzIDwtIGVuc2dbZW5zZyRnZW5lX2Jpb3R5cGUgPT0gInByb3RlaW5fY29kaW5nIl0kZ2VuZV9pZApgYGAKCgoKIyBQcm9jZXNzIEFsZXZpbiBxdWFudGlmaWNhdGlvbnMKCiMjIHR4aW1wb3J0IGFuZCBtYWtlIFNDRXMKCmBgYHtyfQpzY2VzIDwtIHF1YW50X2RpcnMgJT4lCiAgcHVycnI6Om1hcCgKICAgIH4gdHhpbXBvcnQoZmlsZS5wYXRoKGRhdGFfZGlyLCAueCwgImFsZXZpbiIsICJxdWFudHNfbWF0Lmd6IiksCiAgICAgICAgICAgICAgIHR5cGUgPSAiYWxldmluIikpICU+JQogIHB1cnJyOjptYXAoCiAgICB+IFNpbmdsZUNlbGxFeHBlcmltZW50KGxpc3QoY291bnRzID0gLngkY291bnRzKSkpIAoKIyBhZGQgbmFtZXMKbmFtZXMoc2NlcykgPC0gcXVhbnRfZGlycwpgYGAKCgpDYWxjdWxhdGUgY2VsbCBhbmQgZmVhdHVyZSBRQyBzdGF0aXN0aWNzIGZvciBlYWNoIHNhbXBsZS4KCmBgYHtyfQpzY2VzIDwtIHNjZXMgJT4lIAogIHB1cnJyOjptYXAoCiAgICB+IHNjYXRlcjo6YWRkUGVyQ2VsbFFDKAogICAgICAueCwKICAgICAgc3Vic2V0cyA9IGxpc3QobWl0byA9IG1pdG9fZ2VuZXNbbWl0b19nZW5lcyAlaW4lIHJvd25hbWVzKC54KV0sCiAgICAgICAgICAgICAgICAgICAgIG5jUk5BID0gcm93bmFtZXMoLngpWyFyb3duYW1lcygueCkgJWluJSBjb2RpbmdfZ2VuZXNdICkKICAgICkgCiAgKSAlPiUKICBwdXJycjo6bWFwKHNjYXRlcjo6YWRkUGVyRmVhdHVyZVFDKQpgYGAKCkNvbWJpbmUgYWxsIGNlbGwgUUMgc3RhdHMgaW50byBhIHNpbmdsZSBkYXRhIGZyYW1lCmBgYHtyfQpzY2VfY2VsbF9xYyA8LSBwdXJycjo6bWFwX2RmKHNjZXMsIAogICAgICAgICAgICAgICAgICAgICAgICB+IGFzLmRhdGEuZnJhbWUoY29sRGF0YSgueCkpICU+JQogICAgICAgICAgICAgICAgICAgICAgICAgIHRpYmJsZTo6cm93bmFtZXNfdG9fY29sdW1uKHZhciA9ICJjZWxsX2lkIiksIAogICAgICAgICAgICAgICAgICAgICAgICAuaWQgPSAicXVhbnRfaWQiKSAlPiUKICBkcGx5cjo6bGVmdF9qb2luKHF1YW50X2luZm8sIGJ5ID0gYygicXVhbnRfaWQiID0gInF1YW50X2RpciIpKQpgYGAKCgpDb21iaW5lIGFsbCBmZWF0dXJlIFFDIHN0YXRzIGludG8gYSBzaW5nbGUgZGF0YSBmcmFtZS4KYGBge3J9CnNjZV9mZWF0dXJlX3FjIDwtIHB1cnJyOjptYXBfZGYoc2NlcywgCiAgICAgICAgICAgICAgICAgICAgICAgIH4gYXMuZGF0YS5mcmFtZShyb3dEYXRhKC54KSkgJT4lCiAgICAgICAgICAgICAgICAgICAgICAgICAgdGliYmxlOjpyb3duYW1lc190b19jb2x1bW4odmFyID0gImdlbmVfaWQiKSwgCiAgICAgICAgICAgICAgICAgICAgICAgIC5pZCA9ICJxdWFudF9pZCIpICU+JQogIGRwbHlyOjpsZWZ0X2pvaW4ocXVhbnRfaW5mbywgYnkgPSBjKCJxdWFudF9pZCIgPSAicXVhbnRfZGlyIikpCmBgYAoKIyMgUGxvdHRpbmcgdGhlIFFDIHN0YXRzCgpQbG90IGNlbGwgUUMgZ2VuZSBhY2N1bXVsYXRpb24gY3VydmVzICYgbWl0byBmcmFjdGlvbgpgYGB7cn0KZ2dwbG90KHNjZV9jZWxsX3FjICU+JSBkcGx5cjo6ZmlsdGVyKGttZXIgPT0gIjMxIiksIAogICAgICAgYWVzKHggPSBzdW0sIHkgPSBkZXRlY3RlZCwgY29sb3IgPSBzdWJzZXRzX21pdG9fcGVyY2VudCkpICsKICBnZW9tX3BvaW50KCkgKwogIGZhY2V0X2dyaWQoc2FtcGxlIH4gcGFzdGUoaW5kZXhfY29udGVudCwgc2EpICkgKwogIHNjYWxlX2NvbG9yX3ZpcmlkaXNfYygpICsKICBzY2FsZV94X2xvZzEwKCkgKwogIHNjYWxlX3lfbG9nMTAoKQogIApgYGAKCgoK
+ + + +
+ + + + + + + + + + + + + + + + From d9456d35310defbcfe8118ba064f3430dfc9a66f Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Thu, 3 Sep 2020 13:24:39 -0400 Subject: [PATCH 05/15] More analysis of cdna vs ncRNA --- workflows/alevin-quant/benchmark-analysis.Rmd | 106 ++++++++++++++ .../alevin-quant/benchmark-analysis.nb.html | 134 +++++++++++++++++- 2 files changed, 239 insertions(+), 1 deletion(-) diff --git a/workflows/alevin-quant/benchmark-analysis.Rmd b/workflows/alevin-quant/benchmark-analysis.Rmd index 6d75bbe..a0aad41 100644 --- a/workflows/alevin-quant/benchmark-analysis.Rmd +++ b/workflows/alevin-quant/benchmark-analysis.Rmd @@ -134,5 +134,111 @@ ggplot(sce_cell_qc %>% dplyr::filter(kmer == "31"), ``` +# Find features that are reliably detected + +To start, will select features that are detected in > 5% of cells in at least one sample/index. + +```{r} +detected_features <- sce_feature_qc %>% + dplyr::filter(detected >= 5.0) %>% + dplyr::pull(gene_id) %>% + unique() +# How many? +length(detected_features) +``` + +How many of these are not protein coding? + +```{r} +detected_nc <- detected_features[!detected_features %in% coding_genes] + +length(detected_nc) +``` + +Lets look at these features in a bit more depth, comparing the same sample with full transcriptome vs cDNA only. +```{r} +# select noncoding detected features +nc_feature_qc <- sce_feature_qc %>% + dplyr::filter(gene_id %in% detected_nc) + +# Get detected ncRNAs in 834-txome_k31_no_sa as a transcriptome + +nc_txome <- nc_feature_qc %>% + dplyr::filter(quant_id == "834-txome_k31_no_sa") %>% + dplyr::arrange(desc(mean)) + +nc_cdna <- nc_feature_qc %>% + dplyr::filter(quant_id == "834-cdna_k31_no_sa") + +# Join the tables +nc_feature_comparison <- nc_txome %>% + dplyr::left_join(nc_cdna, + by = "gene_id", + suffix = c("_txome", "_cdna")) %>% + dplyr::select("gene_id", "mean_txome", "mean_cdna", "detected_txome", "detected_cdna") + +nc_feature_comparison +``` + +As expected, most of the features that are not listed as coding do not appear in the cdna only set! +Some do, and spot checking indicates that those are listed as pseudogenes, which are for whatever reason still included in the cDNA file. + +Of those that do not, the top few genes are MALAT1 and mitchondrial rRNAs. +MALAT1 is potentially interesting, and it does seem that we should probably keep it! + +Lets make a vector of the noncoding cDNAs for future work: +```{r} +nc_cdna_genes <- sce_feature_qc %>% + dplyr::filter(quant_id == "834-cdna_k31_no_sa", + ! gene_id %in% coding_genes) %>% + dplyr::pull(gene_id) +``` + + +## Comparing coding and noncoding txomes + +First, looking at the mean expression of each gene, comparing coding and noncoding: comparing within samples, coding to noncoding. + +```{r} +sce_feature_filtered <- sce_feature_qc %>% + dplyr::filter(kmer == "31", sa == "no") %>% + dplyr::mutate(class = dplyr::case_when(gene_id %in% coding_genes ~ "coding", + gene_id %in% nc_cdna_genes ~ "noncoding cDNA", + TRUE ~ "ncRNA")) + +ggplot(sce_feature_filtered, + aes (x = mean, color = class)) + + geom_density() + + scale_x_log10() + + scale_color_brewer(palette = "Dark2") + + facet_grid(index_content ~ sample) +``` + +The noncoding cDNA genes seem to follow a very similar ditribution to the noncoding cDNA genes (mostly pseudogenes?), but I can't see any particular reason to exclude them. + +Just to check, lets look at the correlation of coding genes within a sample: + + +```{r} +# pick a random set of cells to look at +cell_sample <- sample(colnames(sces[["834-cdna_k31_no_sa"]]), 100) + +features <- rownames(sces[["834-cdna_k31_no_sa"]]) +coding_features <- features[features %in% coding_genes] + +compare_expression <- data.frame( + cdna = as.vector(counts(sces[["834-cdna_k31_no_sa"]][coding_features, cell_sample])), + txome = as.vector(counts(sces[["834-txome_k31_no_sa"]][coding_features, cell_sample])) +) + +cor(compare_expression, method = "spearman") +``` +```{r} +qqplot(log1p(compare_expression$cdna), log1p(compare_expression$txome)) +``` +Correlation is nearly perfect. + +## Conclusion +I think there is little cost, and a not insignificant potential gain to including noncoding RNA transcripts in the mapping sets for this project. diff --git a/workflows/alevin-quant/benchmark-analysis.nb.html b/workflows/alevin-quant/benchmark-analysis.nb.html index cc85e33..f528a0b 100644 --- a/workflows/alevin-quant/benchmark-analysis.nb.html +++ b/workflows/alevin-quant/benchmark-analysis.nb.html @@ -5727,11 +5727,143 @@

Plotting the QC stats

+ + +
+

Find features that are reliably detected

+

To start, will select features that are detected in > 5% of cells in at least one sample/index.

+ + + +
detected_features <- sce_feature_qc %>%
+  dplyr::filter(detected >= 5.0) %>%
+  dplyr::pull(gene_id) %>%
+  unique()
+length(detected_features)
+ + +
[1] 15202
+ + + +

How many of these are not protein coding?

+ + + +
detected_nc <- detected_features[!detected_features %in% coding_genes]
+
+length(detected_nc)
+ + +
[1] 1689
+ + + +

Lets look at these features in a bit more depth, comparing the same sample with full transcriptome vs cDNA only.

+ + + +
# select noncoding detected features
+nc_feature_qc <- sce_feature_qc %>% 
+  dplyr::filter(gene_id %in% detected_nc) 
+
+# Get detected ncRNAs in 834-txome_k31_no_sa as a transcriptome 
+
+nc_txome <-  nc_feature_qc %>%
+  dplyr::filter(quant_id == "834-txome_k31_no_sa") %>%
+  dplyr::arrange(desc(mean))
+
+nc_cdna <-  nc_feature_qc %>%
+  dplyr::filter(quant_id == "834-cdna_k31_no_sa")
+
+# Join the tables
+nc_feature_comparison <- nc_txome %>%
+  dplyr::left_join(nc_cdna, 
+                   by = "gene_id", 
+                   suffix = c("_txome", "_cdna")) %>%
+  dplyr::select("gene_id", "mean_txome", "mean_cdna", "detected_txome", "detected_cdna")
+
+nc_feature_comparison
+ + +
+ +
+ + + +

As expected, most of the features that are not listed as coding do not appear in the cdna only set! Some do, and spot checking indicates that those are listed as pseudogenes, which are for whatever reason still included in the cDNA file.

+

Of those that do not, the top few genes are MALAT1 and mitchondrial rRNAs. MALAT1 is potentially interesting, and it does seem that we should probably keep it!

+

Lets make a vector of the noncoding cDNAs for future work:

+ + + +
nc_cdna_genes <- sce_feature_qc %>%
+  dplyr::filter(quant_id == "834-cdna_k23_no_sa",
+                ! gene_id %in% coding_genes) %>%
+  dplyr::pull(gene_id)
+ + + +
+

Comparing coding and noncoding txomes

+

First, looking at the mean expression of each gene, comparing coding and noncoding: comparing within samples, coding to noncoding.

+ + + +
sce_feature_filtered <- sce_feature_qc %>% 
+  dplyr::filter(kmer == "31", sa == "no") %>%
+  dplyr::mutate(class = dplyr::case_when(gene_id %in% coding_genes ~ "coding",
+                                         gene_id %in% nc_cdna_genes ~ "noncoding cDNA",
+                                          TRUE ~ "ncRNA"))
+
+ggplot(sce_feature_filtered, 
+       aes (x = mean, color = class)) +
+  geom_density() + 
+  scale_x_log10() + 
+  scale_color_brewer(palette = "Dark2") +
+  facet_grid(index_content ~ sample)
+ + +

+ + + +

The noncoding cDNA genes seem to follow a very similar ditribution to the noncoding cDNA genes (mostly pseudogenes?), but I can’t see any particular reason to exclude them.

+

Just to check, lets look at the correlation of coding genes within a sample:

+ + + +
cor(compare_expression, method = "spearman")
+
+ + +
          cdna    txome
+cdna  1.000000 0.994648
+txome 0.994648 1.000000
+ + + + +
qqplot(log1p(compare_expression$cdna), log1p(compare_expression$txome))
+ + +

+ + + +

Correlation is nearly perfect.

+
+
+

Conclusion

+

I think there is little cost, and a not insignificant potential gain to including noncoding RNA transcripts in the mapping sets for this project.

-
LS0tCnRpdGxlOiAiQWxldmluIEluZGV4IGNvbXBhcmlzb25zIgphdXRob3I6ICJKb3NodWEgU2hhcGlybyBmb3IgQ0NETCIKb3V0cHV0OiBodG1sX25vdGVib29rCi0tLQoKVGhpcyBub3RlYm9vayBjb250YWlucyBhbmFseXNpcyBvZiBzb21lIGludGlhbCBiZW5jaG1hcmsgaW4gcnVucyBvZiBBbGV2aW4gdXNpZ24gZGlmZmVyZW50IGluZGV4IGZpbGVzLCBsb29raW5nIGF0IG1hcHBpbmcgcmF0ZXMuCgojIyMgTG9hZCBMaWJyYXJpZXMKYGBge3Igc2V0dXB9CmxpYnJhcnkoZ2dwbG90MikKbGlicmFyeShtYWdyaXR0cikKbGlicmFyeShTaW5nbGVDZWxsRXhwZXJpbWVudCkKbGlicmFyeSh0eGltcG9ydCkKYGBgCgojIyMgRmlsZSBhbmQgZGlyZWN0b3J5IHNldHVwCmBgYHtyfQpkYXRhX2RpciA8LSBmaWxlLnBhdGgoImRhdGEiLCAiYWxldmluLXF1YW50IikKZGlyLmNyZWF0ZShkYXRhX2RpciwgcmVjdXJzaXZlID0gVFJVRSwgc2hvd1dhcm5pbmdzID0gRkFMU0UpCgpxdWFudF9zMyA8LSAiczM6Ly9uZXh0Zmxvdy1jY2RsLXJlc3VsdHMvc2NwY2EtYmVuY2htYXJrL2FsZXZpbi1xdWFudCIKCmBgYAoKCgoKIyMgU3luYyBTMyBmaWxlcwoKYGBge3J9CnN5bmNfY2FsbCA8LSBwYXN0ZSgiYXdzIHMzIHN5bmMiLCBxdWFudF9zMywgZGF0YV9kaXIpCnN5c3RlbShzeW5jX2NhbGwpCgpgYGAKCkdldCB0aGUgc2FtcGxlIGxpc3QgYW5kIG1ha2UgYSBkYXRhIGZyYW1lIHdpdGggc2FtcGxlIGluZm8KCmBgYHtyfQpxdWFudF9kaXJzIDwtIGxpc3QuZGlycyhkYXRhX2RpciwgZnVsbC5uYW1lcyA9IEZBTFNFLCByZWN1cnNpdmUgPSBGQUxTRSkKCiMgc3BsaXQgaWRzIGludG8gY29tcG9uZW50cyBmb3IgbGF0ZXIgcHJvY2Vzc2luZwpxdWFudF9pbmZvIDwtIGRhdGEuZnJhbWUgKHF1YW50X2RpciA9IHF1YW50X2RpcnMsIGluZm8gPSBxdWFudF9kaXJzKSAlPiUKICB0aWR5cjo6c2VwYXJhdGUoaW5mbywgc2VwID0gIlstXSIsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygic2FtcGxlIiwgImluZGV4X3R5cGUiKSkgJT4lCiAgdGlkeXI6OnNlcGFyYXRlKGluZGV4X3R5cGUsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygiaW5kZXhfY29udGVudCIsICJrbWVyIiwgInNhIiksIAogICAgICAgICAgICAgICAgICBleHRyYSA9ICJkcm9wIikgJT4lCiAgZHBseXI6Om11dGF0ZShrbWVyID0gc3RyaW5ncjo6c3RyX3JlbW92ZShrbWVyLCAiayIpKQogIApgYGAKCiMjIEdldCBBbm5vdGF0aW9ucyBmcm9tIEFubm90YXRpb25IdWIKCmBgYHtyfQpodWIgPSBBbm5vdGF0aW9uSHViOjpBbm5vdGF0aW9uSHViKGFzayA9IEZBTFNFKQojIEVuc2VtYmwgdjEwMCBIb21vIFNhcGllbnMgaXMgQUg3OTY4OQplbnNkYiA9IGh1YltbIkFINzk2ODkiXV0KZW5zZyA8LSBnZW5lcyhlbnNkYikKYGBgCgpDcmVhdGUgdmVjdG9ycyBvZiBtaXRvY2hvbmRpcmFsIGdlbmVzIGFuZCBjb2RpbmcgZ2VuZXMgZm9yIGxhdGVyLgoKYGBge3J9CiMgY3JlYXRlIHRoZSBtaXRvY2hvbmRyaWFsIGdlbmUgbGlzdAptaXRvX2dlbmVzIDwtIGVuc2dbc2VxbmFtZXMoZW5zZykgPT0gJ01UJ10kZ2VuZV9pZAoKY29kaW5nX2dlbmVzIDwtIGVuc2dbZW5zZyRnZW5lX2Jpb3R5cGUgPT0gInByb3RlaW5fY29kaW5nIl0kZ2VuZV9pZApgYGAKCgoKIyBQcm9jZXNzIEFsZXZpbiBxdWFudGlmaWNhdGlvbnMKCiMjIHR4aW1wb3J0IGFuZCBtYWtlIFNDRXMKCmBgYHtyfQpzY2VzIDwtIHF1YW50X2RpcnMgJT4lCiAgcHVycnI6Om1hcCgKICAgIH4gdHhpbXBvcnQoZmlsZS5wYXRoKGRhdGFfZGlyLCAueCwgImFsZXZpbiIsICJxdWFudHNfbWF0Lmd6IiksCiAgICAgICAgICAgICAgIHR5cGUgPSAiYWxldmluIikpICU+JQogIHB1cnJyOjptYXAoCiAgICB+IFNpbmdsZUNlbGxFeHBlcmltZW50KGxpc3QoY291bnRzID0gLngkY291bnRzKSkpIAoKIyBhZGQgbmFtZXMKbmFtZXMoc2NlcykgPC0gcXVhbnRfZGlycwpgYGAKCgpDYWxjdWxhdGUgY2VsbCBhbmQgZmVhdHVyZSBRQyBzdGF0aXN0aWNzIGZvciBlYWNoIHNhbXBsZS4KCmBgYHtyfQpzY2VzIDwtIHNjZXMgJT4lIAogIHB1cnJyOjptYXAoCiAgICB+IHNjYXRlcjo6YWRkUGVyQ2VsbFFDKAogICAgICAueCwKICAgICAgc3Vic2V0cyA9IGxpc3QobWl0byA9IG1pdG9fZ2VuZXNbbWl0b19nZW5lcyAlaW4lIHJvd25hbWVzKC54KV0sCiAgICAgICAgICAgICAgICAgICAgIG5jUk5BID0gcm93bmFtZXMoLngpWyFyb3duYW1lcygueCkgJWluJSBjb2RpbmdfZ2VuZXNdICkKICAgICkgCiAgKSAlPiUKICBwdXJycjo6bWFwKHNjYXRlcjo6YWRkUGVyRmVhdHVyZVFDKQpgYGAKCkNvbWJpbmUgYWxsIGNlbGwgUUMgc3RhdHMgaW50byBhIHNpbmdsZSBkYXRhIGZyYW1lCmBgYHtyfQpzY2VfY2VsbF9xYyA8LSBwdXJycjo6bWFwX2RmKHNjZXMsIAogICAgICAgICAgICAgICAgICAgICAgICB+IGFzLmRhdGEuZnJhbWUoY29sRGF0YSgueCkpICU+JQogICAgICAgICAgICAgICAgICAgICAgICAgIHRpYmJsZTo6cm93bmFtZXNfdG9fY29sdW1uKHZhciA9ICJjZWxsX2lkIiksIAogICAgICAgICAgICAgICAgICAgICAgICAuaWQgPSAicXVhbnRfaWQiKSAlPiUKICBkcGx5cjo6bGVmdF9qb2luKHF1YW50X2luZm8sIGJ5ID0gYygicXVhbnRfaWQiID0gInF1YW50X2RpciIpKQpgYGAKCgpDb21iaW5lIGFsbCBmZWF0dXJlIFFDIHN0YXRzIGludG8gYSBzaW5nbGUgZGF0YSBmcmFtZS4KYGBge3J9CnNjZV9mZWF0dXJlX3FjIDwtIHB1cnJyOjptYXBfZGYoc2NlcywgCiAgICAgICAgICAgICAgICAgICAgICAgIH4gYXMuZGF0YS5mcmFtZShyb3dEYXRhKC54KSkgJT4lCiAgICAgICAgICAgICAgICAgICAgICAgICAgdGliYmxlOjpyb3duYW1lc190b19jb2x1bW4odmFyID0gImdlbmVfaWQiKSwgCiAgICAgICAgICAgICAgICAgICAgICAgIC5pZCA9ICJxdWFudF9pZCIpICU+JQogIGRwbHlyOjpsZWZ0X2pvaW4ocXVhbnRfaW5mbywgYnkgPSBjKCJxdWFudF9pZCIgPSAicXVhbnRfZGlyIikpCmBgYAoKIyMgUGxvdHRpbmcgdGhlIFFDIHN0YXRzCgpQbG90IGNlbGwgUUMgZ2VuZSBhY2N1bXVsYXRpb24gY3VydmVzICYgbWl0byBmcmFjdGlvbgpgYGB7cn0KZ2dwbG90KHNjZV9jZWxsX3FjICU+JSBkcGx5cjo6ZmlsdGVyKGttZXIgPT0gIjMxIiksIAogICAgICAgYWVzKHggPSBzdW0sIHkgPSBkZXRlY3RlZCwgY29sb3IgPSBzdWJzZXRzX21pdG9fcGVyY2VudCkpICsKICBnZW9tX3BvaW50KCkgKwogIGZhY2V0X2dyaWQoc2FtcGxlIH4gcGFzdGUoaW5kZXhfY29udGVudCwgc2EpICkgKwogIHNjYWxlX2NvbG9yX3ZpcmlkaXNfYygpICsKICBzY2FsZV94X2xvZzEwKCkgKwogIHNjYWxlX3lfbG9nMTAoKQogIApgYGAKCgoK
+
LS0tCnRpdGxlOiAiQWxldmluIEluZGV4IGNvbXBhcmlzb25zIgphdXRob3I6ICJKb3NodWEgU2hhcGlybyBmb3IgQ0NETCIKb3V0cHV0OiBodG1sX25vdGVib29rCi0tLQoKVGhpcyBub3RlYm9vayBjb250YWlucyBhbmFseXNpcyBvZiBzb21lIGludGlhbCBiZW5jaG1hcmsgaW4gcnVucyBvZiBBbGV2aW4gdXNpZ24gZGlmZmVyZW50IGluZGV4IGZpbGVzLCBsb29raW5nIGF0IG1hcHBpbmcgcmF0ZXMuCgojIyMgTG9hZCBMaWJyYXJpZXMKYGBge3Igc2V0dXB9CmxpYnJhcnkoZ2dwbG90MikKbGlicmFyeShtYWdyaXR0cikKbGlicmFyeShTaW5nbGVDZWxsRXhwZXJpbWVudCkKbGlicmFyeSh0eGltcG9ydCkKYGBgCgojIyMgRmlsZSBhbmQgZGlyZWN0b3J5IHNldHVwCmBgYHtyfQpkYXRhX2RpciA8LSBmaWxlLnBhdGgoImRhdGEiLCAiYWxldmluLXF1YW50IikKZGlyLmNyZWF0ZShkYXRhX2RpciwgcmVjdXJzaXZlID0gVFJVRSwgc2hvd1dhcm5pbmdzID0gRkFMU0UpCgpxdWFudF9zMyA8LSAiczM6Ly9uZXh0Zmxvdy1jY2RsLXJlc3VsdHMvc2NwY2EtYmVuY2htYXJrL2FsZXZpbi1xdWFudCIKCmBgYAoKCgoKIyMgU3luYyBTMyBmaWxlcwoKYGBge3J9CnN5bmNfY2FsbCA8LSBwYXN0ZSgiYXdzIHMzIHN5bmMiLCBxdWFudF9zMywgZGF0YV9kaXIpCnN5c3RlbShzeW5jX2NhbGwpCgpgYGAKCkdldCB0aGUgc2FtcGxlIGxpc3QgYW5kIG1ha2UgYSBkYXRhIGZyYW1lIHdpdGggc2FtcGxlIGluZm8KCmBgYHtyfQpxdWFudF9kaXJzIDwtIGxpc3QuZGlycyhkYXRhX2RpciwgZnVsbC5uYW1lcyA9IEZBTFNFLCByZWN1cnNpdmUgPSBGQUxTRSkKCiMgc3BsaXQgaWRzIGludG8gY29tcG9uZW50cyBmb3IgbGF0ZXIgcHJvY2Vzc2luZwpxdWFudF9pbmZvIDwtIGRhdGEuZnJhbWUgKHF1YW50X2RpciA9IHF1YW50X2RpcnMsIGluZm8gPSBxdWFudF9kaXJzKSAlPiUKICB0aWR5cjo6c2VwYXJhdGUoaW5mbywgc2VwID0gIlstXSIsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygic2FtcGxlIiwgImluZGV4X3R5cGUiKSkgJT4lCiAgdGlkeXI6OnNlcGFyYXRlKGluZGV4X3R5cGUsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygiaW5kZXhfY29udGVudCIsICJrbWVyIiwgInNhIiksIAogICAgICAgICAgICAgICAgICBleHRyYSA9ICJkcm9wIikgJT4lCiAgZHBseXI6Om11dGF0ZShrbWVyID0gc3RyaW5ncjo6c3RyX3JlbW92ZShrbWVyLCAiayIpKQogIApgYGAKCiMjIEdldCBBbm5vdGF0aW9ucyBmcm9tIEFubm90YXRpb25IdWIKCmBgYHtyfQpodWIgPSBBbm5vdGF0aW9uSHViOjpBbm5vdGF0aW9uSHViKGFzayA9IEZBTFNFKQojIEVuc2VtYmwgdjEwMCBIb21vIFNhcGllbnMgaXMgQUg3OTY4OQplbnNkYiA9IGh1YltbIkFINzk2ODkiXV0KZW5zZyA8LSBnZW5lcyhlbnNkYikKYGBgCgpDcmVhdGUgdmVjdG9ycyBvZiBtaXRvY2hvbmRpcmFsIGdlbmVzIGFuZCBjb2RpbmcgZ2VuZXMgZm9yIGxhdGVyLgoKYGBge3J9CiMgY3JlYXRlIHRoZSBtaXRvY2hvbmRyaWFsIGdlbmUgbGlzdAptaXRvX2dlbmVzIDwtIGVuc2dbc2VxbmFtZXMoZW5zZykgPT0gJ01UJ10kZ2VuZV9pZAoKY29kaW5nX2dlbmVzIDwtIGVuc2dbZW5zZyRnZW5lX2Jpb3R5cGUgPT0gInByb3RlaW5fY29kaW5nIl0kZ2VuZV9pZApgYGAKCgoKIyBQcm9jZXNzIEFsZXZpbiBxdWFudGlmaWNhdGlvbnMKCiMjIHR4aW1wb3J0IGFuZCBtYWtlIFNDRXMKCmBgYHtyfQpzY2VzIDwtIHF1YW50X2RpcnMgJT4lCiAgcHVycnI6Om1hcCgKICAgIH4gdHhpbXBvcnQoZmlsZS5wYXRoKGRhdGFfZGlyLCAueCwgImFsZXZpbiIsICJxdWFudHNfbWF0Lmd6IiksCiAgICAgICAgICAgICAgIHR5cGUgPSAiYWxldmluIikpICU+JQogIHB1cnJyOjptYXAoCiAgICB+IFNpbmdsZUNlbGxFeHBlcmltZW50KGxpc3QoY291bnRzID0gLngkY291bnRzKSkpIAoKIyBhZGQgbmFtZXMKbmFtZXMoc2NlcykgPC0gcXVhbnRfZGlycwpgYGAKCgpDYWxjdWxhdGUgY2VsbCBhbmQgZmVhdHVyZSBRQyBzdGF0aXN0aWNzIGZvciBlYWNoIHNhbXBsZS4KCmBgYHtyfQpzY2VzIDwtIHNjZXMgJT4lIAogIHB1cnJyOjptYXAoCiAgICB+IHNjYXRlcjo6YWRkUGVyQ2VsbFFDKAogICAgICAueCwKICAgICAgc3Vic2V0cyA9IGxpc3QobWl0byA9IG1pdG9fZ2VuZXNbbWl0b19nZW5lcyAlaW4lIHJvd25hbWVzKC54KV0sCiAgICAgICAgICAgICAgICAgICAgIG5jUk5BID0gcm93bmFtZXMoLngpWyFyb3duYW1lcygueCkgJWluJSBjb2RpbmdfZ2VuZXNdICkKICAgICkgCiAgKSAlPiUKICBwdXJycjo6bWFwKHNjYXRlcjo6YWRkUGVyRmVhdHVyZVFDKQpgYGAKCkNvbWJpbmUgYWxsIGNlbGwgUUMgc3RhdHMgaW50byBhIHNpbmdsZSBkYXRhIGZyYW1lCmBgYHtyfQpzY2VfY2VsbF9xYyA8LSBwdXJycjo6bWFwX2RmKHNjZXMsIAogICAgICAgICAgICAgICAgICAgICAgICB+IGFzLmRhdGEuZnJhbWUoY29sRGF0YSgueCkpICU+JQogICAgICAgICAgICAgICAgICAgICAgICAgIHRpYmJsZTo6cm93bmFtZXNfdG9fY29sdW1uKHZhciA9ICJjZWxsX2lkIiksIAogICAgICAgICAgICAgICAgICAgICAgICAuaWQgPSAicXVhbnRfaWQiKSAlPiUKICBkcGx5cjo6bGVmdF9qb2luKHF1YW50X2luZm8sIGJ5ID0gYygicXVhbnRfaWQiID0gInF1YW50X2RpciIpKQpgYGAKCgpDb21iaW5lIGFsbCBmZWF0dXJlIFFDIHN0YXRzIGludG8gYSBzaW5nbGUgZGF0YSBmcmFtZS4KYGBge3J9CnNjZV9mZWF0dXJlX3FjIDwtIHB1cnJyOjptYXBfZGYoc2NlcywgCiAgICAgICAgICAgICAgICAgICAgICAgIH4gYXMuZGF0YS5mcmFtZShyb3dEYXRhKC54KSkgJT4lCiAgICAgICAgICAgICAgICAgICAgICAgICAgdGliYmxlOjpyb3duYW1lc190b19jb2x1bW4odmFyID0gImdlbmVfaWQiKSwgCiAgICAgICAgICAgICAgICAgICAgICAgIC5pZCA9ICJxdWFudF9pZCIpICU+JQogIGRwbHlyOjpsZWZ0X2pvaW4ocXVhbnRfaW5mbywgYnkgPSBjKCJxdWFudF9pZCIgPSAicXVhbnRfZGlyIikpCmBgYAoKIyMgUGxvdHRpbmcgdGhlIFFDIHN0YXRzCgpQbG90IGNlbGwgUUMgZ2VuZSBhY2N1bXVsYXRpb24gY3VydmVzICYgbWl0byBmcmFjdGlvbgpgYGB7cn0KZ2dwbG90KHNjZV9jZWxsX3FjICU+JSBkcGx5cjo6ZmlsdGVyKGttZXIgPT0gIjMxIiksIAogICAgICAgYWVzKHggPSBzdW0sIHkgPSBkZXRlY3RlZCwgY29sb3IgPSBzdWJzZXRzX21pdG9fcGVyY2VudCkpICsKICBnZW9tX3BvaW50KCkgKwogIGZhY2V0X2dyaWQoc2FtcGxlIH4gcGFzdGUoaW5kZXhfY29udGVudCwgc2EpICkgKwogIHNjYWxlX2NvbG9yX3ZpcmlkaXNfYygpICsKICBzY2FsZV94X2xvZzEwKCkgKwogIHNjYWxlX3lfbG9nMTAoKQogIApgYGAKCiMgRmluZCBmZWF0dXJlcyB0aGF0IGFyZSByZWxpYWJseSBkZXRlY3RlZAoKVG8gc3RhcnQsIHdpbGwgc2VsZWN0IGZlYXR1cmVzIHRoYXQgYXJlIGRldGVjdGVkIGluID4gNSUgb2YgY2VsbHMgaW4gYXQgbGVhc3Qgb25lIHNhbXBsZS9pbmRleC4gCgpgYGB7cn0KZGV0ZWN0ZWRfZmVhdHVyZXMgPC0gc2NlX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihkZXRlY3RlZCA+PSA1LjApICU+JQogIGRwbHlyOjpwdWxsKGdlbmVfaWQpICU+JQogIHVuaXF1ZSgpCiMgSG93IG1hbnk/Cmxlbmd0aChkZXRlY3RlZF9mZWF0dXJlcykKYGBgCgpIb3cgbWFueSBvZiB0aGVzZSBhcmUgbm90IHByb3RlaW4gY29kaW5nPwoKYGBge3J9CmRldGVjdGVkX25jIDwtIGRldGVjdGVkX2ZlYXR1cmVzWyFkZXRlY3RlZF9mZWF0dXJlcyAlaW4lIGNvZGluZ19nZW5lc10KCmxlbmd0aChkZXRlY3RlZF9uYykKYGBgCgpMZXRzIGxvb2sgYXQgdGhlc2UgZmVhdHVyZXMgaW4gYSBiaXQgbW9yZSBkZXB0aCwgY29tcGFyaW5nIHRoZSBzYW1lIHNhbXBsZSB3aXRoIGZ1bGwgdHJhbnNjcmlwdG9tZSB2cyBjRE5BIG9ubHkuCmBgYHtyfQojIHNlbGVjdCBub25jb2RpbmcgZGV0ZWN0ZWQgZmVhdHVyZXMKbmNfZmVhdHVyZV9xYyA8LSBzY2VfZmVhdHVyZV9xYyAlPiUgCiAgZHBseXI6OmZpbHRlcihnZW5lX2lkICVpbiUgZGV0ZWN0ZWRfbmMpIAoKIyBHZXQgZGV0ZWN0ZWQgbmNSTkFzIGluIDgzNC10eG9tZV9rMzFfbm9fc2EgYXMgYSB0cmFuc2NyaXB0b21lIAoKbmNfdHhvbWUgPC0gIG5jX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihxdWFudF9pZCA9PSAiODM0LXR4b21lX2szMV9ub19zYSIpICU+JQogIGRwbHlyOjphcnJhbmdlKGRlc2MobWVhbikpCgpuY19jZG5hIDwtICBuY19mZWF0dXJlX3FjICU+JQogIGRwbHlyOjpmaWx0ZXIocXVhbnRfaWQgPT0gIjgzNC1jZG5hX2szMV9ub19zYSIpCgojIEpvaW4gdGhlIHRhYmxlcwpuY19mZWF0dXJlX2NvbXBhcmlzb24gPC0gbmNfdHhvbWUgJT4lCiAgZHBseXI6OmxlZnRfam9pbihuY19jZG5hLCAKICAgICAgICAgICAgICAgICAgIGJ5ID0gImdlbmVfaWQiLCAKICAgICAgICAgICAgICAgICAgIHN1ZmZpeCA9IGMoIl90eG9tZSIsICJfY2RuYSIpKSAlPiUKICBkcGx5cjo6c2VsZWN0KCJnZW5lX2lkIiwgIm1lYW5fdHhvbWUiLCAibWVhbl9jZG5hIiwgImRldGVjdGVkX3R4b21lIiwgImRldGVjdGVkX2NkbmEiKQoKbmNfZmVhdHVyZV9jb21wYXJpc29uCmBgYAoKQXMgZXhwZWN0ZWQsIG1vc3Qgb2YgdGhlIGZlYXR1cmVzIHRoYXQgYXJlIG5vdCBsaXN0ZWQgYXMgY29kaW5nIGRvIG5vdCBhcHBlYXIgaW4gdGhlIGNkbmEgb25seSBzZXQhClNvbWUgZG8sIGFuZCBzcG90IGNoZWNraW5nIGluZGljYXRlcyB0aGF0IHRob3NlIGFyZSBsaXN0ZWQgYXMgcHNldWRvZ2VuZXMsIHdoaWNoIGFyZSBmb3Igd2hhdGV2ZXIgcmVhc29uIHN0aWxsIGluY2x1ZGVkIGluIHRoZSBjRE5BIGZpbGUuCgpPZiB0aG9zZSB0aGF0IGRvIG5vdCwgdGhlIHRvcCBmZXcgZ2VuZXMgYXJlIE1BTEFUMSBhbmQgbWl0Y2hvbmRyaWFsIHJSTkFzLiAKTUFMQVQxIGlzIHBvdGVudGlhbGx5IGludGVyZXN0aW5nLCBhbmQgaXQgZG9lcyBzZWVtIHRoYXQgd2Ugc2hvdWxkIHByb2JhYmx5IGtlZXAgaXQhCgpMZXRzIG1ha2UgYSB2ZWN0b3Igb2YgdGhlIG5vbmNvZGluZyBjRE5BcyBmb3IgZnV0dXJlIHdvcms6CmBgYHtyfQpuY19jZG5hX2dlbmVzIDwtIHNjZV9mZWF0dXJlX3FjICU+JQogIGRwbHlyOjpmaWx0ZXIocXVhbnRfaWQgPT0gIjgzNC1jZG5hX2szMV9ub19zYSIsCiAgICAgICAgICAgICAgICAhIGdlbmVfaWQgJWluJSBjb2RpbmdfZ2VuZXMpICU+JQogIGRwbHlyOjpwdWxsKGdlbmVfaWQpCmBgYAoKCiMjIENvbXBhcmluZyBjb2RpbmcgYW5kIG5vbmNvZGluZyB0eG9tZXMKCkZpcnN0LCBsb29raW5nIGF0IHRoZSBtZWFuIGV4cHJlc3Npb24gb2YgZWFjaCBnZW5lLCBjb21wYXJpbmcgY29kaW5nIGFuZCBub25jb2Rpbmc6IGNvbXBhcmluZyB3aXRoaW4gc2FtcGxlcywgY29kaW5nIHRvIG5vbmNvZGluZy4KCmBgYHtyfQpzY2VfZmVhdHVyZV9maWx0ZXJlZCA8LSBzY2VfZmVhdHVyZV9xYyAlPiUgCiAgZHBseXI6OmZpbHRlcihrbWVyID09ICIzMSIsIHNhID09ICJubyIpICU+JQogIGRwbHlyOjptdXRhdGUoY2xhc3MgPSBkcGx5cjo6Y2FzZV93aGVuKGdlbmVfaWQgJWluJSBjb2RpbmdfZ2VuZXMgfiAiY29kaW5nIiwKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZW5lX2lkICVpbiUgbmNfY2RuYV9nZW5lcyB+ICJub25jb2RpbmcgY0ROQSIsCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFRSVUUgfiAibmNSTkEiKSkKCmdncGxvdChzY2VfZmVhdHVyZV9maWx0ZXJlZCwgCiAgICAgICBhZXMgKHggPSBtZWFuLCBjb2xvciA9IGNsYXNzKSkgKwogIGdlb21fZGVuc2l0eSgpICsgCiAgc2NhbGVfeF9sb2cxMCgpICsgCiAgc2NhbGVfY29sb3JfYnJld2VyKHBhbGV0dGUgPSAiRGFyazIiKSArCiAgZmFjZXRfZ3JpZChpbmRleF9jb250ZW50IH4gc2FtcGxlKQpgYGAKClRoZSBub25jb2RpbmcgY0ROQSBnZW5lcyBzZWVtIHRvIGZvbGxvdyBhIHZlcnkgc2ltaWxhciBkaXRyaWJ1dGlvbiB0byB0aGUgbm9uY29kaW5nIGNETkEgZ2VuZXMgKG1vc3RseSBwc2V1ZG9nZW5lcz8pLCBidXQgSSBjYW4ndCBzZWUgYW55IHBhcnRpY3VsYXIgcmVhc29uIHRvIGV4Y2x1ZGUgdGhlbS4KCkp1c3QgdG8gY2hlY2ssIGxldHMgbG9vayBhdCB0aGUgY29ycmVsYXRpb24gb2YgY29kaW5nIGdlbmVzIHdpdGhpbiBhIHNhbXBsZToKCgpgYGB7cn0KIyBwaWNrIGEgcmFuZG9tIHNldCBvZiBjZWxscyB0byBsb29rIGF0CmNlbGxfc2FtcGxlIDwtIHNhbXBsZShjb2xuYW1lcyhzY2VzW1siODM0LWNkbmFfazMxX25vX3NhIl1dKSwgMTAwKQoKZmVhdHVyZXMgPC0gcm93bmFtZXMoc2Nlc1tbIjgzNC1jZG5hX2szMV9ub19zYSJdXSkKY29kaW5nX2ZlYXR1cmVzIDwtIGZlYXR1cmVzW2ZlYXR1cmVzICVpbiUgY29kaW5nX2dlbmVzXQoKY29tcGFyZV9leHByZXNzaW9uIDwtIGRhdGEuZnJhbWUoCiAgY2RuYSA9IGFzLnZlY3Rvcihjb3VudHMoc2Nlc1tbIjgzNC1jZG5hX2szMV9ub19zYSJdXVtjb2RpbmdfZmVhdHVyZXMsIGNlbGxfc2FtcGxlXSkpLAogIHR4b21lID0gYXMudmVjdG9yKGNvdW50cyhzY2VzW1siODM0LXR4b21lX2szMV9ub19zYSJdXVtjb2RpbmdfZmVhdHVyZXMsIGNlbGxfc2FtcGxlXSkpCikKCmNvcihjb21wYXJlX2V4cHJlc3Npb24sIG1ldGhvZCA9ICJzcGVhcm1hbiIpCmBgYApgYGB7cn0KcXFwbG90KGxvZzFwKGNvbXBhcmVfZXhwcmVzc2lvbiRjZG5hKSwgbG9nMXAoY29tcGFyZV9leHByZXNzaW9uJHR4b21lKSkKYGBgCkNvcnJlbGF0aW9uIGlzIG5lYXJseSBwZXJmZWN0LgoKIyMgQ29uY2x1c2lvbgpJIHRoaW5rIHRoZXJlIGlzIGxpdHRsZSBjb3N0LCBhbmQgYSBub3QgaW5zaWduaWZpY2FudCBwb3RlbnRpYWwgZ2FpbiB0byBpbmNsdWRpbmcgbm9uY29kaW5nIFJOQSB0cmFuc2NyaXB0cyBpbiB0aGUgbWFwcGluZyBzZXRzIGZvciB0aGlzIHByb2plY3QuCgoK
From 247776c01c318e39f2f779e966e150ef91775368 Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Wed, 9 Sep 2020 12:43:15 -0400 Subject: [PATCH 06/15] Move benchmarks --- .../{alevin-quant => benchmarks}/alevin-benchmark-indexes.nf | 0 .../{alevin-quant => benchmarks}/alevin-benchmark_2020-08-31.html | 0 .../{alevin-quant => benchmarks}/alevin-benchmark_2020-09-08.html | 0 workflows/{alevin-quant => benchmarks}/benchmark-analysis.Rmd | 0 workflows/{alevin-quant => benchmarks}/benchmark-analysis.nb.html | 0 workflows/{alevin-quant => benchmarks}/trace_2020-08-31.txt | 0 workflows/{alevin-quant => benchmarks}/trace_2020-09-08.txt | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename workflows/{alevin-quant => benchmarks}/alevin-benchmark-indexes.nf (100%) rename workflows/{alevin-quant => benchmarks}/alevin-benchmark_2020-08-31.html (100%) rename workflows/{alevin-quant => benchmarks}/alevin-benchmark_2020-09-08.html (100%) rename workflows/{alevin-quant => benchmarks}/benchmark-analysis.Rmd (100%) rename workflows/{alevin-quant => benchmarks}/benchmark-analysis.nb.html (100%) rename workflows/{alevin-quant => benchmarks}/trace_2020-08-31.txt (100%) rename workflows/{alevin-quant => benchmarks}/trace_2020-09-08.txt (100%) diff --git a/workflows/alevin-quant/alevin-benchmark-indexes.nf b/workflows/benchmarks/alevin-benchmark-indexes.nf similarity index 100% rename from workflows/alevin-quant/alevin-benchmark-indexes.nf rename to workflows/benchmarks/alevin-benchmark-indexes.nf diff --git a/workflows/alevin-quant/alevin-benchmark_2020-08-31.html b/workflows/benchmarks/alevin-benchmark_2020-08-31.html similarity index 100% rename from workflows/alevin-quant/alevin-benchmark_2020-08-31.html rename to workflows/benchmarks/alevin-benchmark_2020-08-31.html diff --git a/workflows/alevin-quant/alevin-benchmark_2020-09-08.html b/workflows/benchmarks/alevin-benchmark_2020-09-08.html similarity index 100% rename from workflows/alevin-quant/alevin-benchmark_2020-09-08.html rename to workflows/benchmarks/alevin-benchmark_2020-09-08.html diff --git a/workflows/alevin-quant/benchmark-analysis.Rmd b/workflows/benchmarks/benchmark-analysis.Rmd similarity index 100% rename from workflows/alevin-quant/benchmark-analysis.Rmd rename to workflows/benchmarks/benchmark-analysis.Rmd diff --git a/workflows/alevin-quant/benchmark-analysis.nb.html b/workflows/benchmarks/benchmark-analysis.nb.html similarity index 100% rename from workflows/alevin-quant/benchmark-analysis.nb.html rename to workflows/benchmarks/benchmark-analysis.nb.html diff --git a/workflows/alevin-quant/trace_2020-08-31.txt b/workflows/benchmarks/trace_2020-08-31.txt similarity index 100% rename from workflows/alevin-quant/trace_2020-08-31.txt rename to workflows/benchmarks/trace_2020-08-31.txt diff --git a/workflows/alevin-quant/trace_2020-09-08.txt b/workflows/benchmarks/trace_2020-09-08.txt similarity index 100% rename from workflows/alevin-quant/trace_2020-09-08.txt rename to workflows/benchmarks/trace_2020-09-08.txt From 0c1931b45c17320737d5e9a5a9ee55dc750c4755 Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Wed, 9 Sep 2020 13:47:07 -0400 Subject: [PATCH 07/15] Update dockerfile location and instructions --- .../images/{scpca_r => scpca-r}/Dockerfile | 0 workflows/images/scpca-r/README.md | 27 +++++++++++++++++++ 2 files changed, 27 insertions(+) rename workflows/images/{scpca_r => scpca-r}/Dockerfile (100%) create mode 100644 workflows/images/scpca-r/README.md diff --git a/workflows/images/scpca_r/Dockerfile b/workflows/images/scpca-r/Dockerfile similarity index 100% rename from workflows/images/scpca_r/Dockerfile rename to workflows/images/scpca-r/Dockerfile diff --git a/workflows/images/scpca-r/README.md b/workflows/images/scpca-r/README.md new file mode 100644 index 0000000..6f9a712 --- /dev/null +++ b/workflows/images/scpca-r/README.md @@ -0,0 +1,27 @@ +This folder contains a Dockerfile for the scpca-r image used for R analysis in this repository. + +The image is built from a versioned Rocker image, with additional R packages and other utilities added as needed. + +It can be built with the following command run in this directory: + +``` +docker build . -t ghcr.io/alexslemonade/scpca-r +``` + +Alternatively, the lastest version should be available via: + +``` +docker pull ghcr.io/alexslemonade/scpca-r +``` + +To use and launch the RStudio server, you can use the following example command, which uses the current directory for the internal home directory. +Note that this also mounts the current user's `.aws` credentials folder, which can be useful for easy S3 access, as most data files in this repository are stored on S3 in private buckets. + +``` +docker run \ + --mount type=bind,target=/home/rstudio,source=$PWD \ + --mount type=bind,target=/home/rstudio/.aws,source=$HOME/.aws \ + -e PASSWORD= \ + -p 8787:8787 \ + ghcr.io/alexslemonade/scpca-r +``` \ No newline at end of file From 5ac1b093fa7488c1cdb4c4b2bb638f04119ba580 Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Wed, 9 Sep 2020 14:32:27 -0400 Subject: [PATCH 08/15] Update benchmark analysis notebook --- .gitignore | 2 +- .../{alevin-quant => benchmarks}/README.md | 8 +- workflows/benchmarks/benchmark-analysis.Rmd | 13 +- .../benchmarks/benchmark-analysis.nb.html | 4545 +++-------------- 4 files changed, 793 insertions(+), 3775 deletions(-) rename workflows/{alevin-quant => benchmarks}/README.md (60%) diff --git a/.gitignore b/.gitignore index ec62541..3f5d753 100644 --- a/.gitignore +++ b/.gitignore @@ -44,4 +44,4 @@ rstudio-server.json # intermediate reference and analysis files workflows/rnaseq-ref-index/annotation/ workflows/rnaseq-ref-index/fasta/ -workflows/alevin-quant/data/ \ No newline at end of file +workflows/benchmarks/data/ \ No newline at end of file diff --git a/workflows/alevin-quant/README.md b/workflows/benchmarks/README.md similarity index 60% rename from workflows/alevin-quant/README.md rename to workflows/benchmarks/README.md index 2dc0b8d..7ab966e 100644 --- a/workflows/alevin-quant/README.md +++ b/workflows/benchmarks/README.md @@ -6,6 +6,10 @@ Running the benchmark analysis notebook should be done via docker, with the foll docker run \ --mount type=bind,target=/home/rstudio,source=$PWD \ --mount type=bind,target=/home/rstudio/.aws,source=$HOME/.aws \ - -e PASSWORD= -p 8787:8787 \ - ccdl/scpca_r + -e PASSWORD= \ + -p 8787:8787 \ + ghcr.io/alexslemonade/scpca-r ``` + +The rstudio server can then be logged into via the browser by navigating to http://localhost:8787. +Login with the username `rstudio` and the password chosen above. \ No newline at end of file diff --git a/workflows/benchmarks/benchmark-analysis.Rmd b/workflows/benchmarks/benchmark-analysis.Rmd index a0aad41..e7d1beb 100644 --- a/workflows/benchmarks/benchmark-analysis.Rmd +++ b/workflows/benchmarks/benchmark-analysis.Rmd @@ -30,8 +30,7 @@ quant_s3 <- "s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant" ```{r} sync_call <- paste("aws s3 sync", quant_s3, data_dir) -system(sync_call) - +system(sync_call, ignore.stdout = TRUE) ``` Get the sample list and make a data frame with sample info @@ -214,7 +213,8 @@ ggplot(sce_feature_filtered, facet_grid(index_content ~ sample) ``` -The noncoding cDNA genes seem to follow a very similar ditribution to the noncoding cDNA genes (mostly pseudogenes?), but I can't see any particular reason to exclude them. +The noncoding cDNA genes seem to follow a very similar ditribution to the noncoding cDNA genes (mostly pseudogenes?), but I can't see any particular reason to exclude them. +If anything, there are ncRNA genes tend to have somewhat higher mean expression than the noncoding cDNAs which are in the cDNA dataset. Just to check, lets look at the correlation of coding genes within a sample: @@ -238,7 +238,12 @@ qqplot(log1p(compare_expression$cdna), log1p(compare_expression$txome)) ``` Correlation is nearly perfect. -## Conclusion +### Transcriptome Conclusion + I think there is little cost, and a not insignificant potential gain to including noncoding RNA transcripts in the mapping sets for this project. +## Comparing decoy sequences (TBD) + + + diff --git a/workflows/benchmarks/benchmark-analysis.nb.html b/workflows/benchmarks/benchmark-analysis.nb.html index f528a0b..f0b986a 100644 --- a/workflows/benchmarks/benchmark-analysis.nb.html +++ b/workflows/benchmarks/benchmark-analysis.nb.html @@ -1836,11 +1836,12 @@

Load Libraries

File and directory setup

- +
data_dir <- file.path("data", "alevin-quant")
 dir.create(data_dir, recursive = TRUE, showWarnings = FALSE)
 
-s3_path = "s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant"
+quant_s3 <- "s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant" + @@ -1849,3751 +1850,20 @@

File and directory setup

Sync S3 files

- -
sync_call <- paste("aws s3 sync", s3_path, data_dir)
-system(sync_call)
+ +
sync_call <- paste("aws s3 sync", quant_s3, data_dir)
+system(sync_call, ignore.stdout = TRUE)
+
- -
Completed 2.6 KiB/~67.2 MiB (16.2 KiB/s) with ~9 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/alevin.log to data/alevin-quant/834-cdna_k23_no_sa/alevin/alevin.log
-Completed 2.6 KiB/~67.9 MiB (16.2 KiB/s) with ~11 file(s) remaining (calculating...)
-Completed 33.8 KiB/~203.1 MiB (133.5 KiB/s) with ~56 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat_rows.txt
-Completed 33.8 KiB/~270.9 MiB (133.5 KiB/s) with ~75 file(s) remaining (calculating...)
-Completed 40.6 KiB/~270.9 MiB (140.7 KiB/s) with ~77 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/predictions.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/predictions.txt
-Completed 40.6 KiB/~279.5 MiB (140.7 KiB/s) with ~81 file(s) remaining (calculating...)
-Completed 296.6 KiB/~279.5 MiB (962.8 KiB/s) with ~82 file(s) remaining (calculating...)
-Completed 426.8 KiB/~340.3 MiB (1.3 MiB/s) with ~87 file(s) remaining (calculating...)  
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/featureDump.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/featureDump.txt
-Completed 426.8 KiB/~341.3 MiB (1.3 MiB/s) with ~97 file(s) remaining (calculating...)
-Completed 427.3 KiB/~341.3 MiB (1.2 MiB/s) with ~97 file(s) remaining (calculating...)
-Completed 683.3 KiB/~341.3 MiB (1.9 MiB/s) with ~97 file(s) remaining (calculating...)
-Completed 696.9 KiB/~341.3 MiB (1.9 MiB/s) with ~97 file(s) remaining (calculating...)
-Completed 779.8 KiB/~348.9 MiB (2.0 MiB/s) with ~99 file(s) remaining (calculating...)
-Completed 1.0 MiB/~410.6 MiB (2.6 MiB/s) with ~103 file(s) remaining (calculating...) 
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat_cols.txt
-Completed 1.0 MiB/~410.6 MiB (2.6 MiB/s) with ~103 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-cdna_k23_no_sa/aux_info/alevin_meta_info.json
-Completed 1.0 MiB/~411.5 MiB (2.6 MiB/s) with ~104 file(s) remaining (calculating...)
-Completed 1.0 MiB/~411.5 MiB (2.4 MiB/s) with ~105 file(s) remaining (calculating...)
-Completed 1.3 MiB/~411.5 MiB (2.8 MiB/s) with ~109 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/whitelist.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/whitelist.txt
-Completed 1.3 MiB/~411.5 MiB (2.8 MiB/s) with ~109 file(s) remaining (calculating...)
-Completed 1.5 MiB/~411.5 MiB (3.1 MiB/s) with ~109 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/expected_bias.gz to data/alevin-quant/834-cdna_k23_no_sa/aux_info/expected_bias.gz
-Completed 1.5 MiB/~411.5 MiB (3.1 MiB/s) with ~108 file(s) remaining (calculating...)
-Completed 1.8 MiB/~411.5 MiB (3.5 MiB/s) with ~110 file(s) remaining (calculating...)
-Completed 2.0 MiB/~411.5 MiB (3.9 MiB/s) with ~111 file(s) remaining (calculating...)
-Completed 2.3 MiB/~411.5 MiB (4.4 MiB/s) with ~111 file(s) remaining (calculating...)
-Completed 2.5 MiB/~411.5 MiB (4.6 MiB/s) with ~114 file(s) remaining (calculating...)
-Completed 2.8 MiB/~411.5 MiB (5.0 MiB/s) with ~114 file(s) remaining (calculating...)
-Completed 3.0 MiB/~411.5 MiB (5.4 MiB/s) with ~115 file(s) remaining (calculating...)
-Completed 3.0 MiB/~411.5 MiB (5.1 MiB/s) with ~115 file(s) remaining (calculating...)
-Completed 3.3 MiB/~411.5 MiB (5.4 MiB/s) with ~115 file(s) remaining (calculating...)
-Completed 3.5 MiB/~412.1 MiB (5.8 MiB/s) with ~116 file(s) remaining (calculating...)
-Completed 3.8 MiB/~414.9 MiB (6.1 MiB/s) with ~118 file(s) remaining (calculating...)
-Completed 4.0 MiB/~469.1 MiB (6.2 MiB/s) with ~123 file(s) remaining (calculating...)
-Completed 4.3 MiB/~469.1 MiB (6.3 MiB/s) with ~129 file(s) remaining (calculating...)
-Completed 4.5 MiB/~469.1 MiB (6.7 MiB/s) with ~129 file(s) remaining (calculating...)
-Completed 4.8 MiB/~469.1 MiB (7.1 MiB/s) with ~129 file(s) remaining (calculating...)
-Completed 5.0 MiB/~469.8 MiB (7.2 MiB/s) with ~131 file(s) remaining (calculating...)
-Completed 5.3 MiB/~469.8 MiB (7.5 MiB/s) with ~131 file(s) remaining (calculating...)
-Completed 5.5 MiB/~469.8 MiB (7.8 MiB/s) with ~131 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/meta_info.json to data/alevin-quant/834-cdna_k23_no_sa/aux_info/meta_info.json
-Completed 5.5 MiB/~471.4 MiB (7.8 MiB/s) with ~131 file(s) remaining (calculating...)
-Completed 5.8 MiB/~472.0 MiB (8.0 MiB/s) with ~135 file(s) remaining (calculating...)
-Completed 6.0 MiB/~472.1 MiB (8.3 MiB/s) with ~137 file(s) remaining (calculating...)
-Completed 6.3 MiB/~473.1 MiB (8.6 MiB/s) with ~138 file(s) remaining (calculating...)
-Completed 6.5 MiB/~473.1 MiB (8.9 MiB/s) with ~138 file(s) remaining (calculating...)
-Completed 6.8 MiB/~527.2 MiB (9.2 MiB/s) with ~139 file(s) remaining (calculating...)
-Completed 6.9 MiB/~527.2 MiB (9.4 MiB/s) with ~139 file(s) remaining (calculating...)
-Completed 7.2 MiB/~527.9 MiB (9.6 MiB/s) with ~143 file(s) remaining (calculating...)
-Completed 7.4 MiB/~527.9 MiB (9.8 MiB/s) with ~146 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-cdna_k23_no_sa/aux_info/ambig_info.tsv
-Completed 7.4 MiB/~527.9 MiB (9.8 MiB/s) with ~146 file(s) remaining (calculating...)
-Completed 7.7 MiB/~527.9 MiB (9.9 MiB/s) with ~149 file(s) remaining (calculating...)
-Completed 7.9 MiB/~527.9 MiB (10.2 MiB/s) with ~149 file(s) remaining (calculating...)
-Completed 8.2 MiB/~528.5 MiB (10.4 MiB/s) with ~152 file(s) remaining (calculating...)
-Completed 8.4 MiB/~528.5 MiB (10.7 MiB/s) with ~152 file(s) remaining (calculating...)
-Completed 8.7 MiB/~530.3 MiB (11.0 MiB/s) with ~154 file(s) remaining (calculating...)
-Completed 8.9 MiB/~585.5 MiB (11.2 MiB/s) with ~157 file(s) remaining (calculating...)
-Completed 9.2 MiB/~585.5 MiB (11.5 MiB/s) with ~158 file(s) remaining (calculating...)
-Completed 9.4 MiB/~586.2 MiB (11.4 MiB/s) with ~162 file(s) remaining (calculating...)
-Completed 9.7 MiB/~586.2 MiB (11.6 MiB/s) with ~162 file(s) remaining (calculating...)
-Completed 9.9 MiB/~586.2 MiB (11.9 MiB/s) with ~162 file(s) remaining (calculating...)
-Completed 10.2 MiB/~586.2 MiB (12.2 MiB/s) with ~162 file(s) remaining (calculating...)
-Completed 10.4 MiB/~586.2 MiB (12.5 MiB/s) with ~162 file(s) remaining (calculating...)
-Completed 10.7 MiB/~586.2 MiB (12.8 MiB/s) with ~162 file(s) remaining (calculating...)
-Completed 10.9 MiB/~586.2 MiB (12.8 MiB/s) with ~164 file(s) remaining (calculating...)
-Completed 11.2 MiB/~586.2 MiB (13.0 MiB/s) with ~164 file(s) remaining (calculating...)
-Completed 11.4 MiB/~586.2 MiB (13.3 MiB/s) with ~164 file(s) remaining (calculating...)
-Completed 11.7 MiB/~586.2 MiB (13.6 MiB/s) with ~164 file(s) remaining (calculating...)
-Completed 11.7 MiB/~586.2 MiB (13.3 MiB/s) with ~171 file(s) remaining (calculating...)
-Completed 11.9 MiB/~642.0 MiB (13.3 MiB/s) with ~178 file(s) remaining (calculating...)
-Completed 12.2 MiB/~643.7 MiB (13.5 MiB/s) with ~179 file(s) remaining (calculating...)
-Completed 12.4 MiB/~644.4 MiB (13.5 MiB/s) with ~188 file(s) remaining (calculating...)
-Completed 12.7 MiB/~644.4 MiB (13.6 MiB/s) with ~189 file(s) remaining (calculating...)
-Completed 12.9 MiB/~644.4 MiB (13.8 MiB/s) with ~189 file(s) remaining (calculating...)
-Completed 13.2 MiB/~644.4 MiB (14.1 MiB/s) with ~189 file(s) remaining (calculating...)
-Completed 13.4 MiB/~644.4 MiB (14.3 MiB/s) with ~191 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/fld.gz to data/alevin-quant/834-cdna_k23_no_sa/aux_info/fld.gz
-Completed 13.4 MiB/~647.4 MiB (14.3 MiB/s) with ~193 file(s) remaining (calculating...)
-Completed 13.7 MiB/~648.6 MiB (14.2 MiB/s) with ~195 file(s) remaining (calculating...)
-Completed 13.9 MiB/~648.6 MiB (14.4 MiB/s) with ~195 file(s) remaining (calculating...)
-Completed 14.2 MiB/~648.6 MiB (14.7 MiB/s) with ~195 file(s) remaining (calculating...)
-Completed 14.4 MiB/~648.6 MiB (14.9 MiB/s) with ~196 file(s) remaining (calculating...)
-Completed 14.7 MiB/~702.8 MiB (15.1 MiB/s) with ~197 file(s) remaining (calculating...)
-Completed 14.9 MiB/~702.8 MiB (15.2 MiB/s) with ~197 file(s) remaining (calculating...)
-Completed 15.2 MiB/~702.8 MiB (15.3 MiB/s) with ~198 file(s) remaining (calculating...)
-Completed 15.4 MiB/~703.7 MiB (15.2 MiB/s) with ~202 file(s) remaining (calculating...)
-Completed 15.7 MiB/~703.7 MiB (15.4 MiB/s) with ~202 file(s) remaining (calculating...)
-Completed 15.9 MiB/~703.7 MiB (15.6 MiB/s) with ~202 file(s) remaining (calculating...)
-Completed 16.2 MiB/~703.7 MiB (15.9 MiB/s) with ~202 file(s) remaining (calculating...)
-Completed 16.4 MiB/~703.7 MiB (16.1 MiB/s) with ~202 file(s) remaining (calculating...)
-Completed 16.7 MiB/~703.7 MiB (16.3 MiB/s) with ~202 file(s) remaining (calculating...)
-Completed 16.9 MiB/~759.1 MiB (15.4 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 17.2 MiB/~760.0 MiB (15.3 MiB/s) with ~221 file(s) remaining (calculating...)
-Completed 17.4 MiB/~760.1 MiB (15.3 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 17.7 MiB/~760.1 MiB (15.5 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 17.9 MiB/~760.1 MiB (15.6 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 18.2 MiB/~760.1 MiB (15.7 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 18.4 MiB/~760.1 MiB (15.9 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 18.7 MiB/~760.1 MiB (16.0 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 18.9 MiB/~760.1 MiB (16.2 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 19.2 MiB/~760.1 MiB (16.2 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 19.4 MiB/~760.1 MiB (16.3 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 19.7 MiB/~760.1 MiB (16.5 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 19.9 MiB/~760.1 MiB (16.5 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 20.2 MiB/~760.1 MiB (16.7 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 20.4 MiB/~760.1 MiB (16.8 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 20.7 MiB/~760.1 MiB (16.9 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 20.9 MiB/~760.1 MiB (17.0 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 21.2 MiB/~760.1 MiB (17.1 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 21.4 MiB/~760.1 MiB (17.2 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 21.7 MiB/~760.1 MiB (17.3 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 21.9 MiB/~760.1 MiB (17.4 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 22.2 MiB/~760.1 MiB (17.6 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 22.4 MiB/~760.1 MiB (17.6 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 22.7 MiB/~760.1 MiB (17.6 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 22.9 MiB/~760.1 MiB (17.7 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 23.2 MiB/~760.1 MiB (17.8 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 23.4 MiB/~760.1 MiB (17.8 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 23.7 MiB/~760.1 MiB (18.0 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 23.9 MiB/~760.1 MiB (18.0 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 24.2 MiB/~760.1 MiB (18.1 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 24.4 MiB/~760.1 MiB (18.2 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 24.7 MiB/~760.1 MiB (18.3 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 24.9 MiB/~760.1 MiB (18.4 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 25.2 MiB/~760.1 MiB (18.5 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 25.4 MiB/~760.1 MiB (18.6 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 25.7 MiB/~760.1 MiB (18.7 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 25.9 MiB/~760.1 MiB (18.7 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 26.2 MiB/~760.1 MiB (18.8 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 26.4 MiB/~760.1 MiB (18.9 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 26.7 MiB/~760.1 MiB (19.0 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 26.9 MiB/~760.1 MiB (19.1 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 27.2 MiB/~760.1 MiB (19.1 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 27.4 MiB/~760.1 MiB (19.1 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 27.7 MiB/~760.1 MiB (19.2 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 27.7 MiB/~760.1 MiB (19.0 MiB/s) with ~225 file(s) remaining (calculating...)
-Completed 27.9 MiB/~760.1 MiB (19.2 MiB/s) with ~225 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-cdna_k23_no_sa/aux_info/observed_bias_3p.gz
-Completed 27.9 MiB/~760.1 MiB (19.2 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 28.2 MiB/~760.1 MiB (19.2 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 28.4 MiB/~760.1 MiB (19.3 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 28.7 MiB/~760.1 MiB (19.4 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 28.9 MiB/~760.1 MiB (19.4 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 29.2 MiB/~760.1 MiB (19.4 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 29.4 MiB/~760.1 MiB (19.5 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 29.7 MiB/~760.1 MiB (19.5 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 29.9 MiB/~760.1 MiB (19.6 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 30.2 MiB/~760.1 MiB (19.6 MiB/s) with ~224 file(s) remaining (calculating...)
-Completed 30.2 MiB/~760.1 MiB (19.6 MiB/s) with ~224 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/lib_format_counts.json to data/alevin-quant/834-cdna_k23_no_sa/lib_format_counts.json
-Completed 30.2 MiB/~760.1 MiB (19.6 MiB/s) with ~223 file(s) remaining (calculating...)
-Completed 30.2 MiB/~760.1 MiB (19.0 MiB/s) with ~223 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/logs/salmon_quant.log to data/alevin-quant/834-cdna_k23_no_sa/logs/salmon_quant.log
-Completed 30.2 MiB/~760.1 MiB (19.0 MiB/s) with ~222 file(s) remaining (calculating...)
-Completed 30.2 MiB/~760.1 MiB (18.6 MiB/s) with ~222 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/cmd_info.json to data/alevin-quant/834-cdna_k23_no_sa/cmd_info.json
-Completed 30.2 MiB/~760.1 MiB (18.6 MiB/s) with ~221 file(s) remaining (calculating...)
-Completed 30.2 MiB/~760.1 MiB (18.2 MiB/s) with ~221 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/libParams/flenDist.txt to data/alevin-quant/834-cdna_k23_no_sa/libParams/flenDist.txt
-Completed 30.2 MiB/~760.1 MiB (18.2 MiB/s) with ~220 file(s) remaining (calculating...)
-Completed 30.2 MiB/~760.1 MiB (17.9 MiB/s) with ~220 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/predictions.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/predictions.txt
-Completed 30.2 MiB/~760.1 MiB (17.9 MiB/s) with ~219 file(s) remaining (calculating...)
-Completed 30.3 MiB/~760.1 MiB (17.3 MiB/s) with ~219 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/featureDump.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/featureDump.txt
-Completed 30.3 MiB/~760.1 MiB (17.3 MiB/s) with ~218 file(s) remaining (calculating...)
-Completed 30.6 MiB/~760.1 MiB (17.1 MiB/s) with ~218 file(s) remaining (calculating...)
-Completed 30.8 MiB/~760.1 MiB (17.2 MiB/s) with ~218 file(s) remaining (calculating...)
-Completed 31.1 MiB/~760.1 MiB (17.3 MiB/s) with ~218 file(s) remaining (calculating...)
-Completed 31.3 MiB/~760.1 MiB (17.3 MiB/s) with ~218 file(s) remaining (calculating...)
-Completed 31.3 MiB/~760.1 MiB (17.3 MiB/s) with ~218 file(s) remaining (calculating...)
-Completed 31.6 MiB/~760.1 MiB (17.4 MiB/s) with ~218 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/alevin.log to data/alevin-quant/834-cdna_k31_full_sa/alevin/alevin.log
-Completed 31.6 MiB/~760.1 MiB (17.4 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 31.8 MiB/~760.1 MiB (17.5 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 32.1 MiB/~760.1 MiB (17.5 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 32.3 MiB/~760.1 MiB (17.6 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 32.6 MiB/~760.1 MiB (17.6 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 32.8 MiB/~760.1 MiB (17.7 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 33.1 MiB/~760.1 MiB (17.7 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 33.3 MiB/~760.1 MiB (17.8 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 33.6 MiB/~760.1 MiB (17.9 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 33.8 MiB/~760.1 MiB (17.9 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 33.9 MiB/~760.1 MiB (17.9 MiB/s) with ~217 file(s) remaining (calculating...)
-Completed 34.1 MiB/~760.1 MiB (18.0 MiB/s) with ~217 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat_rows.txt
-Completed 34.1 MiB/~760.1 MiB (18.0 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 34.4 MiB/~760.1 MiB (18.1 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 34.6 MiB/~760.1 MiB (18.0 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 34.9 MiB/~760.1 MiB (18.1 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 35.1 MiB/~760.1 MiB (18.1 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 35.4 MiB/~760.1 MiB (18.2 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 35.6 MiB/~760.1 MiB (18.2 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 35.9 MiB/~760.1 MiB (18.3 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 36.1 MiB/~760.1 MiB (18.4 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 36.4 MiB/~760.1 MiB (18.4 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 36.5 MiB/~760.1 MiB (18.5 MiB/s) with ~216 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat.gz to data/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat.gz
-Completed 36.5 MiB/~760.1 MiB (18.5 MiB/s) with ~215 file(s) remaining (calculating...)
-Completed 36.8 MiB/~760.1 MiB (18.4 MiB/s) with ~215 file(s) remaining (calculating...)
-Completed 37.0 MiB/~760.1 MiB (18.3 MiB/s) with ~215 file(s) remaining (calculating...)
-Completed 37.1 MiB/~760.1 MiB (18.3 MiB/s) with ~215 file(s) remaining (calculating...)
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/quants_mat_cols.txt
-Completed 37.1 MiB/~760.1 MiB (18.3 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 37.3 MiB/~760.1 MiB (18.1 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 37.6 MiB/~760.1 MiB (18.2 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 37.8 MiB/~760.1 MiB (18.3 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 37.8 MiB/~760.1 MiB (18.2 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 38.1 MiB/~760.1 MiB (18.3 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 38.3 MiB/~760.1 MiB (18.4 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 38.6 MiB/~760.1 MiB (18.5 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 38.8 MiB/~760.1 MiB (18.6 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 38.9 MiB/~760.1 MiB (18.6 MiB/s) with ~214 file(s) remaining (calculating...)
-Completed 39.1 MiB/~761.0 MiB (18.6 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 39.4 MiB/~761.0 MiB (18.7 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 39.6 MiB/~761.0 MiB (18.8 MiB/s) with ~216 file(s) remaining (calculating...)
-Completed 39.9 MiB/763.0 MiB (18.6 MiB/s) with 218 file(s) remaining                   
-Completed 40.1 MiB/763.0 MiB (18.6 MiB/s) with 218 file(s) remaining                   
-Completed 40.4 MiB/763.0 MiB (18.7 MiB/s) with 218 file(s) remaining                   
-Completed 40.6 MiB/763.0 MiB (18.8 MiB/s) with 218 file(s) remaining                   
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/aux_info/observed_bias.gz to data/alevin-quant/834-cdna_k23_no_sa/aux_info/observed_bias.gz
-Completed 40.6 MiB/763.0 MiB (18.8 MiB/s) with 217 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/whitelist.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/whitelist.txt
-Completed 40.6 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
-Completed 40.9 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
-Completed 41.1 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
-Completed 41.4 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
-Completed 41.6 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
-Completed 41.9 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
-Completed 42.1 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
-Completed 42.4 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
-Completed 42.6 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
-Completed 42.9 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
-Completed 43.1 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
-Completed 43.4 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
-Completed 43.6 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
-Completed 43.9 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
-Completed 44.1 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
-Completed 44.4 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
-Completed 44.6 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
-Completed 44.9 MiB/763.0 MiB (18.0 MiB/s) with 216 file(s) remaining
-Completed 45.1 MiB/763.0 MiB (18.0 MiB/s) with 216 file(s) remaining
-Completed 45.4 MiB/763.0 MiB (18.1 MiB/s) with 216 file(s) remaining
-Completed 45.6 MiB/763.0 MiB (18.2 MiB/s) with 216 file(s) remaining
-Completed 45.9 MiB/763.0 MiB (18.2 MiB/s) with 216 file(s) remaining
-Completed 46.1 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
-Completed 46.4 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
-Completed 46.6 MiB/763.0 MiB (18.2 MiB/s) with 216 file(s) remaining
-Completed 46.9 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
-Completed 47.1 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
-Completed 47.4 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
-Completed 47.6 MiB/763.0 MiB (18.3 MiB/s) with 216 file(s) remaining
-Completed 47.9 MiB/763.0 MiB (18.4 MiB/s) with 216 file(s) remaining
-Completed 48.1 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
-Completed 48.4 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
-Completed 48.6 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
-Completed 48.9 MiB/763.0 MiB (18.6 MiB/s) with 216 file(s) remaining
-Completed 49.1 MiB/763.0 MiB (18.6 MiB/s) with 216 file(s) remaining
-Completed 49.4 MiB/763.0 MiB (18.6 MiB/s) with 216 file(s) remaining
-Completed 49.6 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
-Completed 49.9 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
-Completed 50.1 MiB/763.0 MiB (18.5 MiB/s) with 216 file(s) remaining
-Completed 50.4 MiB/763.0 MiB (18.6 MiB/s) with 216 file(s) remaining
-Completed 50.6 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
-Completed 50.9 MiB/763.0 MiB (18.7 MiB/s) with 216 file(s) remaining
-Completed 51.1 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
-Completed 51.4 MiB/763.0 MiB (18.8 MiB/s) with 216 file(s) remaining
-Completed 51.6 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
-Completed 51.9 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
-Completed 52.1 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
-Completed 52.4 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
-Completed 52.6 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
-Completed 52.9 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
-Completed 53.1 MiB/763.0 MiB (18.9 MiB/s) with 216 file(s) remaining
-Completed 53.4 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
-Completed 53.6 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
-Completed 53.9 MiB/763.0 MiB (19.0 MiB/s) with 216 file(s) remaining
-Completed 54.1 MiB/763.0 MiB (19.1 MiB/s) with 216 file(s) remaining
-Completed 54.4 MiB/763.0 MiB (19.1 MiB/s) with 216 file(s) remaining
-Completed 54.6 MiB/763.0 MiB (19.1 MiB/s) with 216 file(s) remaining
-Completed 54.9 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
-Completed 55.1 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
-Completed 55.4 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
-Completed 55.6 MiB/763.0 MiB (19.3 MiB/s) with 216 file(s) remaining
-Completed 55.8 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
-Completed 56.1 MiB/763.0 MiB (19.2 MiB/s) with 216 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-cdna_k23_no_sa/alevin/quants_tier_mat.gz
-Completed 56.1 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
-Completed 56.3 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
-Completed 56.6 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
-Completed 56.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 57.1 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 57.3 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 57.6 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
-Completed 57.8 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 58.1 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 58.3 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
-Completed 58.6 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
-Completed 58.8 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 59.1 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 59.3 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
-Completed 59.6 MiB/763.0 MiB (18.6 MiB/s) with 215 file(s) remaining
-Completed 59.8 MiB/763.0 MiB (18.6 MiB/s) with 215 file(s) remaining
-Completed 60.1 MiB/763.0 MiB (18.6 MiB/s) with 215 file(s) remaining
-Completed 60.3 MiB/763.0 MiB (18.6 MiB/s) with 215 file(s) remaining
-Completed 60.6 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
-Completed 60.8 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
-Completed 61.1 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
-Completed 61.3 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
-Completed 61.6 MiB/763.0 MiB (18.7 MiB/s) with 215 file(s) remaining
-Completed 61.8 MiB/763.0 MiB (18.8 MiB/s) with 215 file(s) remaining
-Completed 62.1 MiB/763.0 MiB (18.8 MiB/s) with 215 file(s) remaining
-Completed 62.3 MiB/763.0 MiB (18.9 MiB/s) with 215 file(s) remaining
-Completed 62.6 MiB/763.0 MiB (18.8 MiB/s) with 215 file(s) remaining
-Completed 62.8 MiB/763.0 MiB (18.8 MiB/s) with 215 file(s) remaining
-Completed 63.1 MiB/763.0 MiB (18.9 MiB/s) with 215 file(s) remaining
-Completed 63.3 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 63.6 MiB/763.0 MiB (18.9 MiB/s) with 215 file(s) remaining
-Completed 63.8 MiB/763.0 MiB (18.9 MiB/s) with 215 file(s) remaining
-Completed 64.1 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 64.3 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 64.6 MiB/763.0 MiB (19.0 MiB/s) with 215 file(s) remaining
-Completed 64.8 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
-Completed 65.1 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
-Completed 65.3 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
-Completed 65.6 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
-Completed 65.8 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
-Completed 66.1 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
-Completed 66.3 MiB/763.0 MiB (19.1 MiB/s) with 215 file(s) remaining
-Completed 66.6 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
-Completed 66.8 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
-Completed 67.1 MiB/763.0 MiB (19.2 MiB/s) with 215 file(s) remaining
-Completed 67.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 67.6 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 67.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 68.1 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
-Completed 68.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 68.6 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
-Completed 68.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 69.1 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 69.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 69.6 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 69.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 70.1 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
-Completed 70.3 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
-Completed 70.6 MiB/763.0 MiB (19.5 MiB/s) with 215 file(s) remaining
-Completed 70.8 MiB/763.0 MiB (19.5 MiB/s) with 215 file(s) remaining
-Completed 71.1 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 71.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 71.6 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 71.8 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 72.1 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 72.3 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 72.6 MiB/763.0 MiB (19.3 MiB/s) with 215 file(s) remaining
-Completed 72.8 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
-Completed 73.1 MiB/763.0 MiB (19.5 MiB/s) with 215 file(s) remaining
-Completed 73.3 MiB/763.0 MiB (19.5 MiB/s) with 215 file(s) remaining
-Completed 73.4 MiB/763.0 MiB (19.4 MiB/s) with 215 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat.gz to data/alevin-quant/834-cdna_k23_no_sa/alevin/quants_mat.gz
-Completed 73.4 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
-Completed 73.7 MiB/763.0 MiB (19.3 MiB/s) with 214 file(s) remaining
-Completed 73.9 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
-Completed 74.2 MiB/763.0 MiB (19.3 MiB/s) with 214 file(s) remaining
-Completed 74.4 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
-Completed 74.7 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
-Completed 74.9 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
-Completed 75.2 MiB/763.0 MiB (19.4 MiB/s) with 214 file(s) remaining
-Completed 75.4 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 75.7 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 75.9 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 76.2 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 76.4 MiB/763.0 MiB (19.6 MiB/s) with 214 file(s) remaining
-Completed 76.7 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 76.9 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 77.2 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 77.4 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 77.7 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 77.9 MiB/763.0 MiB (19.5 MiB/s) with 214 file(s) remaining
-Completed 78.2 MiB/763.0 MiB (19.6 MiB/s) with 214 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-cdna_k31_full_sa/alevin/quants_tier_mat.gz
-Completed 78.2 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
-Completed 78.4 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
-Completed 78.7 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
-Completed 78.9 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
-Completed 79.2 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
-Completed 79.4 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
-Completed 79.7 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
-Completed 79.9 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
-Completed 80.2 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
-Completed 80.4 MiB/763.0 MiB (19.6 MiB/s) with 213 file(s) remaining
-Completed 80.7 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
-Completed 80.9 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
-Completed 81.2 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
-Completed 81.4 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 81.7 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 81.9 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 82.2 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
-Completed 82.4 MiB/763.0 MiB (19.7 MiB/s) with 213 file(s) remaining
-Completed 82.7 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 82.9 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 83.2 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 83.4 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 83.7 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 83.9 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 84.2 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 84.4 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 84.7 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 84.9 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
-Completed 85.2 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 85.4 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 85.7 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 85.9 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 86.2 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
-Completed 86.4 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 86.7 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 86.9 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 87.2 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 87.4 MiB/763.0 MiB (19.8 MiB/s) with 213 file(s) remaining
-Completed 87.7 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 87.9 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 88.2 MiB/763.0 MiB (19.9 MiB/s) with 213 file(s) remaining
-Completed 88.4 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
-Completed 88.7 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
-Completed 88.9 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
-Completed 89.2 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
-Completed 89.4 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
-Completed 89.7 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
-Completed 89.9 MiB/763.0 MiB (20.0 MiB/s) with 213 file(s) remaining
-Completed 90.2 MiB/763.0 MiB (20.1 MiB/s) with 213 file(s) remaining
-Completed 90.4 MiB/763.0 MiB (20.1 MiB/s) with 213 file(s) remaining
-Completed 90.7 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
-Completed 90.9 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
-Completed 91.2 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
-Completed 91.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 91.7 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
-Completed 91.9 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
-Completed 92.2 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
-Completed 92.4 MiB/763.0 MiB (20.2 MiB/s) with 213 file(s) remaining
-Completed 92.7 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 92.9 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 93.2 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 93.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 93.7 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 93.9 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 94.2 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 94.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 94.7 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 94.9 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 95.2 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 95.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 95.7 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 95.9 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 96.2 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 96.4 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 96.7 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 96.9 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 97.2 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 97.4 MiB/763.0 MiB (20.3 MiB/s) with 213 file(s) remaining
-Completed 97.7 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 97.9 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 98.2 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 98.4 MiB/763.0 MiB (20.4 MiB/s) with 213 file(s) remaining
-Completed 98.7 MiB/763.0 MiB (20.5 MiB/s) with 213 file(s) remaining
-Completed 98.9 MiB/763.0 MiB (20.5 MiB/s) with 213 file(s) remaining
-Completed 99.2 MiB/763.0 MiB (20.5 MiB/s) with 213 file(s) remaining
-Completed 99.4 MiB/763.0 MiB (20.5 MiB/s) with 213 file(s) remaining
-Completed 99.7 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
-Completed 99.9 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
-Completed 100.2 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
-Completed 100.4 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
-Completed 100.7 MiB/763.0 MiB (20.6 MiB/s) with 213 file(s) remaining
-Completed 100.9 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
-Completed 101.2 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
-Completed 101.4 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
-Completed 101.7 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
-Completed 101.9 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
-Completed 102.2 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
-Completed 102.4 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
-Completed 102.7 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
-Completed 102.9 MiB/763.0 MiB (20.7 MiB/s) with 213 file(s) remaining
-Completed 103.2 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
-Completed 103.4 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
-Completed 103.7 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
-Completed 103.9 MiB/763.0 MiB (20.9 MiB/s) with 213 file(s) remaining
-Completed 104.2 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
-Completed 104.4 MiB/763.0 MiB (20.9 MiB/s) with 213 file(s) remaining
-Completed 104.7 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
-Completed 104.7 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
-Completed 104.9 MiB/763.0 MiB (20.8 MiB/s) with 213 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/fld.gz to data/alevin-quant/834-cdna_k31_full_sa/aux_info/fld.gz
-Completed 104.9 MiB/763.0 MiB (20.8 MiB/s) with 212 file(s) remaining
-Completed 105.2 MiB/763.0 MiB (20.8 MiB/s) with 212 file(s) remaining
-Completed 105.4 MiB/763.0 MiB (20.9 MiB/s) with 212 file(s) remaining
-Completed 105.7 MiB/763.0 MiB (20.8 MiB/s) with 212 file(s) remaining
-Completed 105.7 MiB/763.0 MiB (20.7 MiB/s) with 212 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-cdna_k31_full_sa/aux_info/alevin_meta_info.json
-Completed 105.7 MiB/763.0 MiB (20.7 MiB/s) with 211 file(s) remaining
-Completed 105.9 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
-Completed 106.2 MiB/763.0 MiB (20.5 MiB/s) with 211 file(s) remaining
-Completed 106.4 MiB/763.0 MiB (20.5 MiB/s) with 211 file(s) remaining
-Completed 106.6 MiB/763.0 MiB (20.5 MiB/s) with 211 file(s) remaining
-Completed 106.8 MiB/763.0 MiB (20.5 MiB/s) with 211 file(s) remaining
-Completed 107.1 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
-Completed 107.3 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
-Completed 107.6 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
-Completed 107.6 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
-Completed 107.8 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
-Completed 108.1 MiB/763.0 MiB (20.6 MiB/s) with 211 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k23_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-cdna_k23_no_sa/alevin/raw_cb_frequency.txt
-Completed 108.1 MiB/763.0 MiB (20.6 MiB/s) with 210 file(s) remaining
-Completed 108.3 MiB/763.0 MiB (20.7 MiB/s) with 210 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/expected_bias.gz to data/alevin-quant/834-cdna_k31_full_sa/aux_info/expected_bias.gz
-Completed 108.3 MiB/763.0 MiB (20.7 MiB/s) with 209 file(s) remaining
-Completed 108.6 MiB/763.0 MiB (20.6 MiB/s) with 209 file(s) remaining
-Completed 108.8 MiB/763.0 MiB (20.7 MiB/s) with 209 file(s) remaining
-Completed 109.1 MiB/763.0 MiB (20.7 MiB/s) with 209 file(s) remaining
-Completed 109.1 MiB/763.0 MiB (20.6 MiB/s) with 209 file(s) remaining
-Completed 109.3 MiB/763.0 MiB (20.6 MiB/s) with 209 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/meta_info.json to data/alevin-quant/834-cdna_k31_full_sa/aux_info/meta_info.json
-Completed 109.3 MiB/763.0 MiB (20.6 MiB/s) with 208 file(s) remaining
-Completed 109.6 MiB/763.0 MiB (20.7 MiB/s) with 208 file(s) remaining
-Completed 109.8 MiB/763.0 MiB (20.7 MiB/s) with 208 file(s) remaining
-Completed 109.8 MiB/763.0 MiB (20.7 MiB/s) with 208 file(s) remaining
-Completed 110.0 MiB/763.0 MiB (20.7 MiB/s) with 208 file(s) remaining
-Completed 110.3 MiB/763.0 MiB (20.8 MiB/s) with 208 file(s) remaining
-Completed 110.5 MiB/763.0 MiB (20.8 MiB/s) with 208 file(s) remaining
-Completed 110.8 MiB/763.0 MiB (20.8 MiB/s) with 208 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-cdna_k31_full_sa/aux_info/ambig_info.tsv
-Completed 110.8 MiB/763.0 MiB (20.8 MiB/s) with 207 file(s) remaining
-Completed 111.0 MiB/763.0 MiB (20.8 MiB/s) with 207 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/observed_bias.gz to data/alevin-quant/834-cdna_k31_full_sa/aux_info/observed_bias.gz
-Completed 111.0 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
-Completed 111.0 MiB/763.0 MiB (20.7 MiB/s) with 206 file(s) remaining
-Completed 111.3 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
-Completed 111.5 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
-Completed 111.8 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
-Completed 112.0 MiB/763.0 MiB (20.8 MiB/s) with 206 file(s) remaining
-Completed 112.3 MiB/763.0 MiB (20.9 MiB/s) with 206 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-cdna_k31_full_sa/aux_info/observed_bias_3p.gz
-Completed 112.3 MiB/763.0 MiB (20.9 MiB/s) with 205 file(s) remaining
-Completed 112.5 MiB/763.0 MiB (20.9 MiB/s) with 205 file(s) remaining
-Completed 112.5 MiB/763.0 MiB (20.8 MiB/s) with 205 file(s) remaining
-Completed 112.5 MiB/763.0 MiB (20.8 MiB/s) with 205 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/lib_format_counts.json to data/alevin-quant/834-cdna_k31_full_sa/lib_format_counts.json
-Completed 112.5 MiB/763.0 MiB (20.8 MiB/s) with 204 file(s) remaining
-Completed 112.8 MiB/763.0 MiB (20.8 MiB/s) with 204 file(s) remaining
-Completed 113.0 MiB/763.0 MiB (20.9 MiB/s) with 204 file(s) remaining
-Completed 113.3 MiB/763.0 MiB (20.9 MiB/s) with 204 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/cmd_info.json to data/alevin-quant/834-cdna_k31_full_sa/cmd_info.json
-Completed 113.3 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
-Completed 113.5 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
-Completed 113.8 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
-Completed 114.0 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
-Completed 114.0 MiB/763.0 MiB (20.9 MiB/s) with 203 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/logs/salmon_quant.log to data/alevin-quant/834-cdna_k31_full_sa/logs/salmon_quant.log
-Completed 114.0 MiB/763.0 MiB (20.9 MiB/s) with 202 file(s) remaining
-Completed 114.0 MiB/763.0 MiB (20.8 MiB/s) with 202 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/libParams/flenDist.txt to data/alevin-quant/834-cdna_k31_full_sa/libParams/flenDist.txt
-Completed 114.0 MiB/763.0 MiB (20.8 MiB/s) with 201 file(s) remaining
-Completed 114.3 MiB/763.0 MiB (20.8 MiB/s) with 201 file(s) remaining
-Completed 114.3 MiB/763.0 MiB (20.8 MiB/s) with 201 file(s) remaining
-Completed 114.5 MiB/763.0 MiB (20.8 MiB/s) with 201 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/predictions.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/predictions.txt
-Completed 114.5 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
-Completed 114.8 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
-Completed 115.0 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
-Completed 115.3 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
-Completed 115.5 MiB/763.0 MiB (20.8 MiB/s) with 200 file(s) remaining
-Completed 115.8 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
-Completed 116.0 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
-Completed 116.3 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
-Completed 116.5 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
-Completed 116.8 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
-Completed 117.0 MiB/763.0 MiB (20.9 MiB/s) with 200 file(s) remaining
-Completed 117.3 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 117.5 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 117.8 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 118.0 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 118.3 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 118.5 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 118.5 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 118.8 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 119.0 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 119.3 MiB/763.0 MiB (21.0 MiB/s) with 200 file(s) remaining
-Completed 119.5 MiB/763.0 MiB (21.1 MiB/s) with 200 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/alevin.log to data/alevin-quant/834-cdna_k31_no_sa/alevin/alevin.log
-Completed 119.5 MiB/763.0 MiB (21.1 MiB/s) with 199 file(s) remaining
-Completed 119.8 MiB/763.0 MiB (21.1 MiB/s) with 199 file(s) remaining
-Completed 119.8 MiB/763.0 MiB (21.1 MiB/s) with 199 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat_rows.txt
-Completed 119.8 MiB/763.0 MiB (21.1 MiB/s) with 198 file(s) remaining
-Completed 120.1 MiB/763.0 MiB (21.1 MiB/s) with 198 file(s) remaining
-Completed 120.3 MiB/763.0 MiB (21.1 MiB/s) with 198 file(s) remaining
-Completed 120.4 MiB/763.0 MiB (21.1 MiB/s) with 198 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/featureDump.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/featureDump.txt
-Completed 120.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 120.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 120.9 MiB/763.0 MiB (21.0 MiB/s) with 197 file(s) remaining
-Completed 121.2 MiB/763.0 MiB (21.0 MiB/s) with 197 file(s) remaining
-Completed 121.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 121.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 121.9 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 122.2 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 122.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 122.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 122.9 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 123.2 MiB/763.0 MiB (21.0 MiB/s) with 197 file(s) remaining
-Completed 123.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 123.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 123.9 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 124.2 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 124.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 124.7 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 124.9 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 125.2 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 125.4 MiB/763.0 MiB (21.1 MiB/s) with 197 file(s) remaining
-Completed 125.7 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
-Completed 125.9 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
-Completed 126.2 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
-Completed 126.4 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
-Completed 126.7 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
-Completed 126.9 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
-Completed 127.2 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
-Completed 127.3 MiB/763.0 MiB (21.2 MiB/s) with 197 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat_cols.txt
-Completed 127.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 127.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 127.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 128.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 128.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 128.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 128.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 129.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 129.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 129.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 129.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 130.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 130.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 130.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 130.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 131.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 131.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 131.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 131.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 132.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 132.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 132.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 132.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 133.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 133.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 133.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 133.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 134.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 134.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 134.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 134.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 135.0 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 135.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 135.5 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 135.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 136.0 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 136.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 136.5 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 136.8 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 137.0 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 137.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 137.5 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 137.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 138.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 138.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 138.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 138.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 139.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 139.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 139.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 139.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 140.0 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 140.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 140.5 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 140.8 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 141.0 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 141.3 MiB/763.0 MiB (21.0 MiB/s) with 196 file(s) remaining
-Completed 141.5 MiB/763.0 MiB (21.0 MiB/s) with 196 file(s) remaining
-Completed 141.8 MiB/763.0 MiB (21.0 MiB/s) with 196 file(s) remaining
-Completed 142.0 MiB/763.0 MiB (21.0 MiB/s) with 196 file(s) remaining
-Completed 142.3 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 142.5 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 142.8 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 143.0 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 143.3 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 143.5 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 143.8 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 144.0 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 144.3 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 144.5 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 144.8 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 145.0 MiB/763.0 MiB (21.1 MiB/s) with 196 file(s) remaining
-Completed 145.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 145.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 145.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 146.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 146.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 146.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 146.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 147.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 147.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 147.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 147.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 148.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 148.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 148.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 148.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 149.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 149.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 149.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 149.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 150.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 150.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 150.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 150.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 151.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 151.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 151.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 151.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 152.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 152.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 152.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 152.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 153.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 153.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 153.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 153.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 154.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 154.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 154.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 154.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 155.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 155.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 155.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 155.8 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 156.0 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 156.3 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 156.5 MiB/763.0 MiB (21.2 MiB/s) with 196 file(s) remaining
-Completed 156.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 157.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 157.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 157.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 157.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 158.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 158.3 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 158.5 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 158.8 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 159.0 MiB/763.0 MiB (21.3 MiB/s) with 196 file(s) remaining
-Completed 159.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 159.5 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 159.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 160.0 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 160.3 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 160.5 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 160.8 MiB/763.0 MiB (21.4 MiB/s) with 196 file(s) remaining
-Completed 161.0 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 161.3 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 161.5 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 161.8 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 162.0 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 162.3 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 162.5 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 162.8 MiB/763.0 MiB (21.5 MiB/s) with 196 file(s) remaining
-Completed 163.0 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
-Completed 163.3 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
-Completed 163.5 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
-Completed 163.5 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
-Completed 163.7 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
-Completed 164.0 MiB/763.0 MiB (21.6 MiB/s) with 196 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/whitelist.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/whitelist.txt
-Completed 164.0 MiB/763.0 MiB (21.6 MiB/s) with 195 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_full_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-cdna_k31_full_sa/alevin/raw_cb_frequency.txt
-Completed 164.0 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 164.2 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 164.5 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 164.7 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 165.0 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 165.2 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 165.5 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 165.7 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 166.0 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 166.2 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 166.5 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 166.7 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 167.0 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 167.2 MiB/763.0 MiB (21.5 MiB/s) with 194 file(s) remaining
-Completed 167.5 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 167.7 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 168.0 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 168.2 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 168.5 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 168.7 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 169.0 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 169.2 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
-Completed 169.5 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 169.7 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 170.0 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 170.2 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 170.5 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
-Completed 170.7 MiB/763.0 MiB (21.6 MiB/s) with 194 file(s) remaining
-Completed 171.0 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
-Completed 171.0 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
-Completed 171.3 MiB/763.0 MiB (21.7 MiB/s) with 194 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat.gz to data/alevin-quant/834-cdna_k31_no_sa/alevin/quants_mat.gz
-Completed 171.3 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 171.5 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 171.8 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 172.0 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 172.3 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 172.5 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 172.8 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 173.0 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 173.3 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 173.5 MiB/763.0 MiB (21.7 MiB/s) with 193 file(s) remaining
-Completed 173.7 MiB/763.0 MiB (21.8 MiB/s) with 193 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-cdna_k31_no_sa/aux_info/ambig_info.tsv
-Completed 173.7 MiB/763.0 MiB (21.8 MiB/s) with 192 file(s) remaining
-Completed 174.0 MiB/763.0 MiB (21.8 MiB/s) with 192 file(s) remaining
-Completed 174.0 MiB/763.0 MiB (21.7 MiB/s) with 192 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/fld.gz to data/alevin-quant/834-cdna_k31_no_sa/aux_info/fld.gz
-Completed 174.0 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
-Completed 174.2 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
-Completed 174.5 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
-Completed 174.7 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
-Completed 175.0 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
-Completed 175.2 MiB/763.0 MiB (21.7 MiB/s) with 191 file(s) remaining
-Completed 175.5 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
-Completed 175.7 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
-Completed 176.0 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
-Completed 176.2 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
-Completed 176.2 MiB/763.0 MiB (21.8 MiB/s) with 191 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-cdna_k31_no_sa/aux_info/alevin_meta_info.json
-Completed 176.2 MiB/763.0 MiB (21.8 MiB/s) with 190 file(s) remaining
-Completed 176.5 MiB/763.0 MiB (21.8 MiB/s) with 190 file(s) remaining
-Completed 176.7 MiB/763.0 MiB (21.8 MiB/s) with 190 file(s) remaining
-Completed 176.7 MiB/763.0 MiB (21.8 MiB/s) with 190 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/meta_info.json to data/alevin-quant/834-cdna_k31_no_sa/aux_info/meta_info.json
-Completed 176.7 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
-Completed 177.0 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
-Completed 177.2 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
-Completed 177.5 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
-Completed 177.7 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
-Completed 178.0 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
-Completed 178.2 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
-Completed 178.2 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
-Completed 178.5 MiB/763.0 MiB (21.8 MiB/s) with 189 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/observed_bias.gz to data/alevin-quant/834-cdna_k31_no_sa/aux_info/observed_bias.gz
-Completed 178.5 MiB/763.0 MiB (21.8 MiB/s) with 188 file(s) remaining
-Completed 178.7 MiB/763.0 MiB (21.8 MiB/s) with 188 file(s) remaining
-Completed 178.7 MiB/763.0 MiB (21.8 MiB/s) with 188 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/expected_bias.gz to data/alevin-quant/834-cdna_k31_no_sa/aux_info/expected_bias.gz
-Completed 178.7 MiB/763.0 MiB (21.8 MiB/s) with 187 file(s) remaining
-Completed 179.0 MiB/763.0 MiB (21.8 MiB/s) with 187 file(s) remaining
-Completed 179.2 MiB/763.0 MiB (21.8 MiB/s) with 187 file(s) remaining
-Completed 179.2 MiB/763.0 MiB (21.8 MiB/s) with 187 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-cdna_k31_no_sa/aux_info/observed_bias_3p.gz
-Completed 179.2 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
-Completed 179.5 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
-Completed 179.7 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
-Completed 180.0 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
-Completed 180.2 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
-Completed 180.5 MiB/763.0 MiB (21.9 MiB/s) with 186 file(s) remaining
-Completed 180.7 MiB/763.0 MiB (21.9 MiB/s) with 186 file(s) remaining
-Completed 181.0 MiB/763.0 MiB (21.9 MiB/s) with 186 file(s) remaining
-Completed 181.0 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
-Completed 181.0 MiB/763.0 MiB (21.8 MiB/s) with 186 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/cmd_info.json to data/alevin-quant/834-cdna_k31_no_sa/cmd_info.json
-Completed 181.0 MiB/763.0 MiB (21.8 MiB/s) with 185 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/lib_format_counts.json to data/alevin-quant/834-cdna_k31_no_sa/lib_format_counts.json
-Completed 181.0 MiB/763.0 MiB (21.8 MiB/s) with 184 file(s) remaining
-Completed 181.2 MiB/763.0 MiB (21.8 MiB/s) with 184 file(s) remaining
-Completed 181.5 MiB/763.0 MiB (21.8 MiB/s) with 184 file(s) remaining
-Completed 181.7 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
-Completed 182.0 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
-Completed 182.2 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
-Completed 182.5 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
-Completed 182.7 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
-Completed 183.0 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
-Completed 183.2 MiB/763.0 MiB (22.0 MiB/s) with 184 file(s) remaining
-Completed 183.2 MiB/763.0 MiB (21.9 MiB/s) with 184 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/libParams/flenDist.txt to data/alevin-quant/834-cdna_k31_no_sa/libParams/flenDist.txt
-Completed 183.2 MiB/763.0 MiB (21.9 MiB/s) with 183 file(s) remaining
-Completed 183.2 MiB/763.0 MiB (21.9 MiB/s) with 183 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/logs/salmon_quant.log to data/alevin-quant/834-cdna_k31_no_sa/logs/salmon_quant.log
-Completed 183.2 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
-Completed 183.5 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
-Completed 183.7 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
-Completed 184.0 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
-Completed 184.2 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
-Completed 184.5 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
-Completed 184.7 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
-Completed 185.0 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
-Completed 185.2 MiB/763.0 MiB (22.0 MiB/s) with 182 file(s) remaining
-Completed 185.2 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
-Completed 185.5 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
-Completed 185.7 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
-Completed 185.7 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
-Completed 186.0 MiB/763.0 MiB (21.9 MiB/s) with 182 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/alevin.log to data/alevin-quant/834-cdna_k31_partial_sa/alevin/alevin.log
-Completed 186.0 MiB/763.0 MiB (21.9 MiB/s) with 181 file(s) remaining
-Completed 186.2 MiB/763.0 MiB (21.9 MiB/s) with 181 file(s) remaining
-Completed 186.5 MiB/763.0 MiB (21.9 MiB/s) with 181 file(s) remaining
-Completed 186.7 MiB/763.0 MiB (21.9 MiB/s) with 181 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/predictions.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/predictions.txt
-Completed 186.7 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
-Completed 187.0 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
-Completed 187.2 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
-Completed 187.5 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
-Completed 187.7 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
-Completed 188.0 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
-Completed 188.2 MiB/763.0 MiB (21.9 MiB/s) with 180 file(s) remaining
-Completed 188.5 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
-Completed 188.7 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
-Completed 189.0 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
-Completed 189.0 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
-Completed 189.3 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
-Completed 189.4 MiB/763.0 MiB (22.0 MiB/s) with 180 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/featureDump.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/featureDump.txt
-Completed 189.4 MiB/763.0 MiB (22.0 MiB/s) with 179 file(s) remaining
-Completed 189.6 MiB/763.0 MiB (22.0 MiB/s) with 179 file(s) remaining
-Completed 189.9 MiB/763.0 MiB (22.0 MiB/s) with 179 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat_rows.txt
-Completed 189.9 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
-Completed 190.1 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
-Completed 190.4 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
-Completed 190.6 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
-Completed 190.9 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
-Completed 191.1 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 191.4 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 191.6 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 191.9 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 192.1 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
-Completed 192.4 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 192.6 MiB/763.0 MiB (22.0 MiB/s) with 178 file(s) remaining
-Completed 192.9 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 193.1 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 193.4 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 193.6 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 193.9 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 194.1 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-Completed 194.2 MiB/763.0 MiB (22.1 MiB/s) with 178 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat_cols.txt
-Completed 194.2 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 194.5 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 194.7 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 195.0 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 195.2 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 195.5 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 195.7 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 196.0 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 196.2 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 196.5 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
-Completed 196.7 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
-Completed 197.0 MiB/763.0 MiB (22.1 MiB/s) with 177 file(s) remaining
-Completed 197.2 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
-Completed 197.5 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
-Completed 197.7 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
-Completed 198.0 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
-Completed 198.2 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
-Completed 198.5 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
-Completed 198.7 MiB/763.0 MiB (22.2 MiB/s) with 177 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-cdna_k31_no_sa/alevin/quants_tier_mat.gz
-Completed 198.7 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
-Completed 198.9 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
-Completed 199.2 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
-Completed 199.4 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
-Completed 199.7 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
-Completed 199.9 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
-Completed 200.2 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
-Completed 200.4 MiB/763.0 MiB (22.2 MiB/s) with 176 file(s) remaining
-Completed 200.7 MiB/763.0 MiB (22.1 MiB/s) with 176 file(s) remaining
-Completed 200.9 MiB/763.0 MiB (22.1 MiB/s) with 176 file(s) remaining
-Completed 201.2 MiB/763.0 MiB (22.1 MiB/s) with 176 file(s) remaining
-Completed 201.4 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
-Completed 201.7 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
-Completed 201.9 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
-Completed 202.2 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
-Completed 202.4 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
-Completed 202.7 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
-Completed 202.9 MiB/763.0 MiB (22.0 MiB/s) with 176 file(s) remaining
-Completed 203.2 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
-Completed 203.4 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
-Completed 203.7 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 203.9 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
-Completed 204.2 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 204.4 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 204.7 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 204.9 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 205.2 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 205.4 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 205.7 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 205.9 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 206.2 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 206.4 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 206.7 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 206.9 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 207.1 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 207.4 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 207.6 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 207.9 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 208.1 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 208.4 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 208.6 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 208.9 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 209.1 MiB/763.0 MiB (21.4 MiB/s) with 176 file(s) remaining
-Completed 209.4 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 209.6 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 209.9 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 210.1 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 210.4 MiB/763.0 MiB (21.5 MiB/s) with 176 file(s) remaining
-Completed 210.6 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
-Completed 210.9 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
-Completed 211.1 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
-Completed 211.4 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
-Completed 211.6 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
-Completed 211.9 MiB/763.0 MiB (21.6 MiB/s) with 176 file(s) remaining
-Completed 212.1 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
-Completed 212.4 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
-Completed 212.6 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
-Completed 212.9 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
-Completed 213.1 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
-Completed 213.4 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
-Completed 213.6 MiB/763.0 MiB (21.7 MiB/s) with 176 file(s) remaining
-Completed 213.9 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
-Completed 214.1 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
-Completed 214.4 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
-Completed 214.6 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
-Completed 214.9 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
-Completed 215.1 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
-Completed 215.4 MiB/763.0 MiB (21.8 MiB/s) with 176 file(s) remaining
-Completed 215.6 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
-Completed 215.9 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
-Completed 216.1 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
-Completed 216.1 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
-Completed 216.4 MiB/763.0 MiB (21.9 MiB/s) with 176 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/alevin_meta_info.json
-Completed 216.4 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
-Completed 216.6 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
-Completed 216.9 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
-Completed 217.1 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
-Completed 217.4 MiB/763.0 MiB (21.9 MiB/s) with 175 file(s) remaining
-Completed 217.6 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
-Completed 217.9 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
-Completed 218.1 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
-Completed 218.4 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
-Completed 218.6 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
-Completed 218.9 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
-Completed 219.1 MiB/763.0 MiB (22.0 MiB/s) with 175 file(s) remaining
-Completed 219.4 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
-Completed 219.6 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
-Completed 219.9 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
-Completed 220.1 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
-Completed 220.4 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
-Completed 220.6 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
-Completed 220.9 MiB/763.0 MiB (22.1 MiB/s) with 175 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-cdna_k31_no_sa/alevin/raw_cb_frequency.txt
-Completed 220.9 MiB/763.0 MiB (22.1 MiB/s) with 174 file(s) remaining
-Completed 221.1 MiB/763.0 MiB (22.1 MiB/s) with 174 file(s) remaining
-Completed 221.4 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
-Completed 221.6 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
-Completed 221.9 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
-Completed 222.1 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
-Completed 222.4 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
-Completed 222.6 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
-Completed 222.9 MiB/763.0 MiB (22.2 MiB/s) with 174 file(s) remaining
-Completed 223.1 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
-Completed 223.4 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
-Completed 223.6 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
-Completed 223.9 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
-Completed 224.1 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
-Completed 224.4 MiB/763.0 MiB (22.3 MiB/s) with 174 file(s) remaining
-Completed 224.6 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
-Completed 224.9 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
-Completed 225.1 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
-Completed 225.4 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
-Completed 225.6 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
-Completed 225.9 MiB/763.0 MiB (22.4 MiB/s) with 174 file(s) remaining
-Completed 226.1 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
-Completed 226.4 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
-Completed 226.6 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
-Completed 226.9 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
-Completed 227.1 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
-Completed 227.4 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
-Completed 227.6 MiB/763.0 MiB (22.5 MiB/s) with 174 file(s) remaining
-Completed 227.9 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
-Completed 228.1 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
-Completed 228.4 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
-Completed 228.6 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
-Completed 228.9 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
-Completed 229.1 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
-Completed 229.4 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
-Completed 229.6 MiB/763.0 MiB (22.6 MiB/s) with 174 file(s) remaining
-Completed 229.9 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
-Completed 230.1 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
-Completed 230.4 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
-Completed 230.6 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
-Completed 230.9 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
-Completed 231.1 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
-Completed 231.4 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
-Completed 231.6 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
-Completed 231.9 MiB/763.0 MiB (22.7 MiB/s) with 174 file(s) remaining
-Completed 232.1 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
-Completed 232.4 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
-Completed 232.6 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
-Completed 232.9 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
-Completed 233.1 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
-Completed 233.4 MiB/763.0 MiB (22.8 MiB/s) with 174 file(s) remaining
-Completed 233.6 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
-Completed 233.9 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
-Completed 234.1 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
-Completed 234.4 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
-Completed 234.6 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
-Completed 234.9 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
-Completed 235.1 MiB/763.0 MiB (22.9 MiB/s) with 174 file(s) remaining
-Completed 235.4 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
-Completed 235.6 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
-Completed 235.9 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
-Completed 236.1 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
-Completed 236.4 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
-Completed 236.5 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
-Completed 236.8 MiB/763.0 MiB (23.0 MiB/s) with 174 file(s) remaining
-Completed 237.0 MiB/763.0 MiB (23.1 MiB/s) with 174 file(s) remaining
-Completed 237.3 MiB/763.0 MiB (23.1 MiB/s) with 174 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/ambig_info.tsv
-Completed 237.3 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
-Completed 237.5 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
-Completed 237.8 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
-Completed 238.0 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
-Completed 238.3 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
-Completed 238.5 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
-Completed 238.6 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
-Completed 238.8 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
-Completed 239.1 MiB/763.0 MiB (23.1 MiB/s) with 173 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/whitelist.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/whitelist.txt
-Completed 239.1 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 239.3 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 239.6 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 239.8 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 240.1 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 240.3 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 240.6 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 240.8 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 241.1 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 241.3 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 241.3 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 241.6 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 241.8 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-Completed 242.1 MiB/763.0 MiB (23.1 MiB/s) with 172 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/expected_bias.gz to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/expected_bias.gz
-Completed 242.1 MiB/763.0 MiB (23.1 MiB/s) with 171 file(s) remaining
-Completed 242.3 MiB/763.0 MiB (23.1 MiB/s) with 171 file(s) remaining
-Completed 242.6 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-Completed 242.8 MiB/763.0 MiB (23.1 MiB/s) with 171 file(s) remaining
-Completed 243.1 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-Completed 243.3 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-Completed 243.6 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-Completed 243.8 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-Completed 244.1 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-Completed 244.1 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-Completed 244.3 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-Completed 244.6 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-Completed 244.8 MiB/763.0 MiB (23.2 MiB/s) with 171 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/fld.gz to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/fld.gz
-Completed 244.8 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
-Completed 245.1 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
-Completed 245.3 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
-Completed 245.6 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
-Completed 245.8 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
-Completed 246.1 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
-Completed 246.3 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
-Completed 246.3 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
-Completed 246.6 MiB/763.0 MiB (23.2 MiB/s) with 170 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/cmd_info.json to data/alevin-quant/834-cdna_k31_partial_sa/cmd_info.json
-Completed 246.6 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
-Completed 246.8 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
-Completed 247.1 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
-Completed 247.3 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
-Completed 247.6 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
-Completed 247.8 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
-Completed 248.1 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
-Completed 248.3 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
-Completed 248.6 MiB/763.0 MiB (23.3 MiB/s) with 169 file(s) remaining
-Completed 248.6 MiB/763.0 MiB (23.2 MiB/s) with 169 file(s) remaining
-Completed 248.8 MiB/763.0 MiB (23.3 MiB/s) with 169 file(s) remaining
-Completed 249.1 MiB/763.0 MiB (23.3 MiB/s) with 169 file(s) remaining
-Completed 249.3 MiB/763.0 MiB (23.3 MiB/s) with 169 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/observed_bias_3p.gz
-Completed 249.3 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
-Completed 249.6 MiB/763.0 MiB (23.2 MiB/s) with 168 file(s) remaining
-Completed 249.8 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
-Completed 250.1 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
-Completed 250.3 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
-Completed 250.6 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
-Completed 250.6 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
-Completed 250.8 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
-Completed 251.1 MiB/763.0 MiB (23.3 MiB/s) with 168 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/meta_info.json to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/meta_info.json
-Completed 251.1 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
-Completed 251.3 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
-Completed 251.6 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
-Completed 251.8 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
-Completed 252.1 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
-Completed 252.3 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
-Completed 252.6 MiB/763.0 MiB (23.3 MiB/s) with 167 file(s) remaining
-Completed 252.8 MiB/763.0 MiB (23.4 MiB/s) with 167 file(s) remaining
-Completed 252.8 MiB/763.0 MiB (23.4 MiB/s) with 167 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/aux_info/observed_bias.gz to data/alevin-quant/834-cdna_k31_partial_sa/aux_info/observed_bias.gz
-Completed 252.8 MiB/763.0 MiB (23.4 MiB/s) with 166 file(s) remaining
-Completed 253.1 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
-Completed 253.3 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
-Completed 253.6 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
-Completed 253.6 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
-Completed 253.8 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
-Completed 253.8 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
-Completed 254.1 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
-Completed 254.3 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
-Completed 254.6 MiB/763.0 MiB (23.3 MiB/s) with 166 file(s) remaining
-Completed 254.8 MiB/763.0 MiB (23.4 MiB/s) with 166 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/lib_format_counts.json to data/alevin-quant/834-cdna_k31_partial_sa/lib_format_counts.json
-Completed 254.8 MiB/763.0 MiB (23.4 MiB/s) with 165 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/libParams/flenDist.txt to data/alevin-quant/834-cdna_k31_partial_sa/libParams/flenDist.txt
-Completed 254.8 MiB/763.0 MiB (23.4 MiB/s) with 164 file(s) remaining
-Completed 255.1 MiB/763.0 MiB (23.3 MiB/s) with 164 file(s) remaining
-Completed 255.3 MiB/763.0 MiB (23.3 MiB/s) with 164 file(s) remaining
-Completed 255.6 MiB/763.0 MiB (23.3 MiB/s) with 164 file(s) remaining
-Completed 255.8 MiB/763.0 MiB (23.3 MiB/s) with 164 file(s) remaining
-Completed 256.1 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
-Completed 256.3 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
-Completed 256.6 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
-Completed 256.6 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
-Completed 256.8 MiB/763.0 MiB (23.2 MiB/s) with 164 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/logs/salmon_quant.log to data/alevin-quant/834-cdna_k31_partial_sa/logs/salmon_quant.log
-Completed 256.8 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
-Completed 257.1 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
-Completed 257.3 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
-Completed 257.3 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
-Completed 257.5 MiB/763.0 MiB (23.2 MiB/s) with 163 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/featureDump.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/featureDump.txt
-Completed 257.5 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
-Completed 257.7 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
-Completed 258.0 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
-Completed 258.2 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
-Completed 258.5 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
-Completed 258.7 MiB/763.0 MiB (23.2 MiB/s) with 162 file(s) remaining
-Completed 259.0 MiB/763.0 MiB (23.3 MiB/s) with 162 file(s) remaining
-Completed 259.2 MiB/763.0 MiB (23.3 MiB/s) with 162 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/alevin.log to data/alevin-quant/834-txome_k23_no_sa/alevin/alevin.log
-Completed 259.2 MiB/763.0 MiB (23.3 MiB/s) with 161 file(s) remaining
-Completed 259.5 MiB/763.0 MiB (23.3 MiB/s) with 161 file(s) remaining
-Completed 259.5 MiB/763.0 MiB (23.2 MiB/s) with 161 file(s) remaining
-Completed 259.5 MiB/763.0 MiB (23.2 MiB/s) with 161 file(s) remaining
-Completed 259.7 MiB/763.0 MiB (23.2 MiB/s) with 161 file(s) remaining
-Completed 260.0 MiB/763.0 MiB (23.3 MiB/s) with 161 file(s) remaining
-Completed 260.2 MiB/763.0 MiB (23.3 MiB/s) with 161 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/predictions.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/predictions.txt
-Completed 260.2 MiB/763.0 MiB (23.3 MiB/s) with 160 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat_rows.txt
-Completed 260.2 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 260.5 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 260.7 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 261.0 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 261.2 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 261.5 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 261.7 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 262.0 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 262.2 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 262.5 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 262.7 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 263.0 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 263.2 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 263.5 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 263.7 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 263.9 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-Completed 264.1 MiB/763.0 MiB (23.3 MiB/s) with 159 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_tier_mat.gz
-Completed 264.1 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 264.4 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 264.6 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 264.9 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 265.1 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 265.4 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 265.6 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 265.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 266.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 266.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 266.6 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 266.9 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 267.1 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 267.4 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 267.6 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 267.9 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 268.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 268.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 268.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 268.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 269.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 269.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 269.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 269.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 270.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 270.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 270.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 270.9 MiB/763.0 MiB (23.3 MiB/s) with 158 file(s) remaining
-Completed 271.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 271.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 271.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 271.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 272.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 272.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 272.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 272.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 273.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 273.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 273.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 273.9 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 274.1 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 274.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 274.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 274.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 275.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 275.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 275.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 275.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 276.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 276.4 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 276.6 MiB/763.0 MiB (23.4 MiB/s) with 158 file(s) remaining
-Completed 276.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 277.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 277.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 277.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 277.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 278.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 278.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 278.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 278.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 279.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 279.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 279.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 279.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 280.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 280.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 280.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 280.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 281.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 281.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 281.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 281.9 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 282.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 282.4 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 282.6 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-Completed 282.9 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
-Completed 283.1 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
-Completed 283.4 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
-Completed 283.6 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
-Completed 283.9 MiB/763.0 MiB (23.6 MiB/s) with 158 file(s) remaining
-Completed 284.1 MiB/763.0 MiB (23.5 MiB/s) with 158 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat_cols.txt
-Completed 284.1 MiB/763.0 MiB (23.5 MiB/s) with 157 file(s) remaining
-Completed 284.3 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
-Completed 284.6 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
-Completed 284.8 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
-Completed 285.1 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
-Completed 285.3 MiB/763.0 MiB (23.3 MiB/s) with 157 file(s) remaining
-Completed 285.6 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
-Completed 285.8 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
-Completed 286.1 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
-Completed 286.3 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
-Completed 286.6 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
-Completed 286.8 MiB/763.0 MiB (23.4 MiB/s) with 157 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat.gz to data/alevin-quant/834-cdna_k31_partial_sa/alevin/quants_mat.gz
-Completed 286.8 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 287.1 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 287.3 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 287.6 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 287.8 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 288.1 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 288.3 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 288.6 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 288.8 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 289.1 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 289.3 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 289.6 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 289.8 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 290.1 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 290.3 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 290.6 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 290.8 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 291.1 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 291.3 MiB/763.0 MiB (23.3 MiB/s) with 156 file(s) remaining
-Completed 291.6 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 291.8 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 292.1 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 292.3 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 292.5 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-Completed 292.8 MiB/763.0 MiB (23.4 MiB/s) with 156 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-cdna_k31_partial_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-cdna_k31_partial_sa/alevin/raw_cb_frequency.txt
-Completed 292.8 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
-Completed 293.0 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
-Completed 293.3 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
-Completed 293.5 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
-Completed 293.8 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
-Completed 294.0 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
-Completed 294.3 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
-Completed 294.3 MiB/763.0 MiB (23.4 MiB/s) with 155 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-txome_k23_no_sa/aux_info/alevin_meta_info.json
-Completed 294.3 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-Completed 294.5 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-Completed 294.8 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-Completed 295.0 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-Completed 295.3 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-Completed 295.5 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-Completed 295.8 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-Completed 296.0 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-Completed 296.3 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-Completed 296.3 MiB/763.0 MiB (23.4 MiB/s) with 154 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/whitelist.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/whitelist.txt
-Completed 296.3 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 296.5 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 296.8 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 297.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 297.3 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 297.5 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 297.8 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 298.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 298.3 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 298.5 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 298.8 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 299.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 299.3 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 299.5 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 299.8 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 300.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 300.0 MiB/763.0 MiB (23.4 MiB/s) with 153 file(s) remaining
-Completed 300.3 MiB/763.0 MiB (23.5 MiB/s) with 153 file(s) remaining
-Completed 300.5 MiB/763.0 MiB (23.5 MiB/s) with 153 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat.gz to data/alevin-quant/834-txome_k23_no_sa/alevin/quants_mat.gz
-Completed 300.5 MiB/763.0 MiB (23.5 MiB/s) with 152 file(s) remaining
-Completed 300.5 MiB/763.0 MiB (23.4 MiB/s) with 152 file(s) remaining
-Completed 300.8 MiB/763.0 MiB (23.5 MiB/s) with 152 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/meta_info.json to data/alevin-quant/834-txome_k23_no_sa/aux_info/meta_info.json
-Completed 300.8 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
-Completed 301.0 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
-Completed 301.3 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
-Completed 301.5 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
-Completed 301.8 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
-Completed 302.0 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
-Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
-Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 151 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/expected_bias.gz to data/alevin-quant/834-txome_k23_no_sa/aux_info/expected_bias.gz
-Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 150 file(s) remaining
-Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 150 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/fld.gz to data/alevin-quant/834-txome_k23_no_sa/aux_info/fld.gz
-Completed 302.3 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-Completed 302.5 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-Completed 302.8 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-Completed 303.0 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-Completed 303.3 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-Completed 303.5 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-Completed 303.8 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-Completed 304.0 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-Completed 304.3 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-Completed 304.3 MiB/763.0 MiB (23.5 MiB/s) with 149 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/observed_bias.gz to data/alevin-quant/834-txome_k23_no_sa/aux_info/observed_bias.gz
-Completed 304.3 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 304.5 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 304.8 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 305.0 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 305.3 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 305.5 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 305.8 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 306.0 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 306.3 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 306.5 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 306.8 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-Completed 306.8 MiB/763.0 MiB (23.5 MiB/s) with 148 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-txome_k23_no_sa/aux_info/observed_bias_3p.gz
-Completed 306.8 MiB/763.0 MiB (23.5 MiB/s) with 147 file(s) remaining
-Completed 307.0 MiB/763.0 MiB (23.4 MiB/s) with 147 file(s) remaining
-Completed 307.3 MiB/763.0 MiB (23.4 MiB/s) with 147 file(s) remaining
-Completed 307.3 MiB/763.0 MiB (23.4 MiB/s) with 147 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/libParams/flenDist.txt to data/alevin-quant/834-txome_k23_no_sa/libParams/flenDist.txt
-Completed 307.3 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 307.5 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 307.8 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 308.0 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 308.3 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 308.5 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 308.8 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 309.0 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 309.3 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 309.5 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 309.8 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-Completed 309.8 MiB/763.0 MiB (23.4 MiB/s) with 146 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/cmd_info.json to data/alevin-quant/834-txome_k23_no_sa/cmd_info.json
-Completed 309.8 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
-Completed 310.0 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
-Completed 310.3 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
-Completed 310.5 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
-Completed 310.8 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
-Completed 311.0 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 311.3 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 311.5 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 311.8 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 312.0 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 312.3 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 312.5 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 312.8 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
-Completed 313.0 MiB/763.0 MiB (23.4 MiB/s) with 145 file(s) remaining
-Completed 313.3 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 313.5 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 313.8 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 314.0 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 314.2 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 314.4 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-Completed 314.7 MiB/763.0 MiB (23.5 MiB/s) with 145 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/featureDump.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/featureDump.txt
-Completed 314.7 MiB/763.0 MiB (23.5 MiB/s) with 144 file(s) remaining
-Completed 314.8 MiB/763.0 MiB (23.5 MiB/s) with 144 file(s) remaining
-Completed 315.1 MiB/763.0 MiB (23.5 MiB/s) with 144 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-txome_k23_no_sa/aux_info/ambig_info.tsv
-Completed 315.1 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
-Completed 315.3 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
-Completed 315.6 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
-Completed 315.6 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
-Completed 315.8 MiB/763.0 MiB (23.5 MiB/s) with 143 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/lib_format_counts.json to data/alevin-quant/834-txome_k23_no_sa/lib_format_counts.json
-Completed 315.8 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
-Completed 316.1 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
-Completed 316.3 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
-Completed 316.6 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
-Completed 316.8 MiB/763.0 MiB (23.5 MiB/s) with 142 file(s) remaining
-Completed 317.1 MiB/763.0 MiB (23.6 MiB/s) with 142 file(s) remaining
-Completed 317.3 MiB/763.0 MiB (23.6 MiB/s) with 142 file(s) remaining
-Completed 317.3 MiB/763.0 MiB (23.6 MiB/s) with 142 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/alevin.log to data/alevin-quant/834-txome_k31_no_sa/alevin/alevin.log
-Completed 317.3 MiB/763.0 MiB (23.6 MiB/s) with 141 file(s) remaining
-Completed 317.4 MiB/763.0 MiB (23.5 MiB/s) with 141 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-txome_k23_no_sa/alevin/quants_tier_mat.gz
-Completed 317.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 317.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 317.9 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 318.2 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 318.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 318.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 318.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 319.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 319.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 319.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 319.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 320.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 320.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 320.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 320.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 321.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 321.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 321.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 321.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 322.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 322.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 322.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 322.9 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 323.2 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 323.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 323.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 323.9 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 324.2 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 324.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 324.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 324.9 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 325.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 325.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 325.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 325.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 326.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 326.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 326.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 326.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 327.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 327.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 327.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 327.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 328.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 328.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 328.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 328.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 329.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 329.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 329.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 329.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 330.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 330.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 330.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 330.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 331.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 331.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 331.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 331.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 332.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 332.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 332.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 332.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 333.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 333.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 333.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 333.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 334.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 334.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 334.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 334.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 335.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 335.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 335.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 335.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 336.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 336.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 336.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 336.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 337.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 337.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 337.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 337.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 338.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 338.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 338.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 338.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 339.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 339.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 339.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 339.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 340.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 340.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 340.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 340.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 341.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 341.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 341.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 341.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 342.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 342.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 342.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 342.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 343.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 343.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 343.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 343.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 344.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 344.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 344.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 344.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 345.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 345.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 345.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 345.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 346.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 346.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 346.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 346.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 347.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 347.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 347.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 347.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 348.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 348.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 348.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 348.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 349.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 349.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 349.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 349.9 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 350.2 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 350.4 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 350.7 MiB/763.0 MiB (23.7 MiB/s) with 140 file(s) remaining
-Completed 350.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 351.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 351.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 351.7 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 351.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 352.2 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 352.4 MiB/763.0 MiB (23.5 MiB/s) with 140 file(s) remaining
-Completed 352.7 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 352.9 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 353.2 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 353.4 MiB/763.0 MiB (23.6 MiB/s) with 140 file(s) remaining
-Completed 353.7 MiB/763.0 MiB (23.3 MiB/s) with 140 file(s) remaining
-Completed 353.9 MiB/763.0 MiB (23.3 MiB/s) with 140 file(s) remaining
-Completed 354.2 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 354.4 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 354.7 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 354.9 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 355.2 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 355.4 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 355.7 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 355.9 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 356.2 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 356.4 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 356.7 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 356.9 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 357.2 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 357.4 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 357.7 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 357.9 MiB/763.0 MiB (23.2 MiB/s) with 140 file(s) remaining
-Completed 358.2 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
-Completed 358.4 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
-Completed 358.7 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
-Completed 358.9 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
-Completed 359.2 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
-Completed 359.4 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
-Completed 359.7 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
-Completed 359.9 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
-Completed 360.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 360.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 360.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 360.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 361.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 361.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 361.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 361.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 362.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 362.4 MiB/763.0 MiB (23.1 MiB/s) with 140 file(s) remaining
-Completed 362.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 362.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 363.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 363.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 363.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 363.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 364.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 364.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 364.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 364.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 365.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 365.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 365.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 365.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 366.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 366.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 366.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 366.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 367.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 367.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 367.7 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 367.9 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 368.2 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 368.4 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 368.6 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-Completed 368.8 MiB/763.0 MiB (23.0 MiB/s) with 140 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-txome_k23_no_sa/alevin/raw_cb_frequency.txt
-Completed 368.8 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
-Completed 369.1 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
-Completed 369.3 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
-Completed 369.6 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
-Completed 369.8 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
-Completed 369.8 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
-Completed 370.1 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
-Completed 370.3 MiB/763.0 MiB (23.0 MiB/s) with 139 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/predictions.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/predictions.txt
-Completed 370.3 MiB/763.0 MiB (23.0 MiB/s) with 138 file(s) remaining
-Completed 370.6 MiB/763.0 MiB (23.0 MiB/s) with 138 file(s) remaining
-Completed 370.8 MiB/763.0 MiB (23.0 MiB/s) with 138 file(s) remaining
-Completed 370.9 MiB/763.0 MiB (22.9 MiB/s) with 138 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/whitelist.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/whitelist.txt
-Completed 370.9 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 371.1 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 371.4 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 371.6 MiB/763.0 MiB (23.0 MiB/s) with 137 file(s) remaining
-Completed 371.9 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 372.1 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 372.4 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 372.6 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 372.9 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 373.1 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 373.4 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 373.6 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 373.7 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 373.9 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 374.2 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 374.4 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-Completed 374.7 MiB/763.0 MiB (22.9 MiB/s) with 137 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/834-txome_k31_no_sa/alevin/quants_tier_mat.gz
-Completed 374.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 374.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 375.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 375.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 375.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 375.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 376.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 376.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 376.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 376.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 377.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 377.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 377.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 377.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 378.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 378.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 378.7 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 378.9 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 379.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 379.4 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 379.7 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-Completed 379.9 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-Completed 380.2 MiB/763.0 MiB (22.9 MiB/s) with 136 file(s) remaining
-Completed 380.4 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-Completed 380.7 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-Completed 380.9 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-Completed 381.2 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-Completed 381.4 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-Completed 381.7 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-Completed 381.9 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-Completed 382.1 MiB/763.0 MiB (22.8 MiB/s) with 136 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat_cols.txt
-Completed 382.1 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
-Completed 382.4 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
-Completed 382.6 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
-Completed 382.9 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
-Completed 383.1 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
-Completed 383.4 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
-Completed 383.6 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
-Completed 383.7 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
-Completed 383.9 MiB/763.0 MiB (22.8 MiB/s) with 135 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k23_no_sa/logs/salmon_quant.log to data/alevin-quant/834-txome_k23_no_sa/logs/salmon_quant.log
-Completed 383.9 MiB/763.0 MiB (22.8 MiB/s) with 134 file(s) remaining
-Completed 384.2 MiB/763.0 MiB (22.8 MiB/s) with 134 file(s) remaining
-Completed 384.2 MiB/763.0 MiB (22.7 MiB/s) with 134 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat_rows.txt
-Completed 384.2 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-Completed 384.4 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-Completed 384.7 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-Completed 384.9 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-Completed 385.2 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-Completed 385.4 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-Completed 385.7 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-Completed 385.9 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-Completed 385.9 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-Completed 386.1 MiB/763.0 MiB (22.7 MiB/s) with 133 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/834-txome_k31_no_sa/aux_info/ambig_info.tsv
-Completed 386.1 MiB/763.0 MiB (22.7 MiB/s) with 132 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/fld.gz to data/alevin-quant/834-txome_k31_no_sa/aux_info/fld.gz
-Completed 386.1 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
-Completed 386.3 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
-Completed 386.6 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
-Completed 386.8 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
-Completed 387.1 MiB/763.0 MiB (22.8 MiB/s) with 131 file(s) remaining
-Completed 387.3 MiB/763.0 MiB (22.8 MiB/s) with 131 file(s) remaining
-Completed 387.3 MiB/763.0 MiB (22.7 MiB/s) with 131 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/meta_info.json to data/alevin-quant/834-txome_k31_no_sa/aux_info/meta_info.json
-Completed 387.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 387.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 387.6 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 387.8 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 388.1 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 388.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 388.6 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 388.8 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 389.1 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 389.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 389.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 389.6 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 389.8 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 390.1 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 390.3 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-Completed 390.6 MiB/763.0 MiB (22.7 MiB/s) with 130 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/834-txome_k31_no_sa/aux_info/observed_bias_3p.gz
-Completed 390.6 MiB/763.0 MiB (22.7 MiB/s) with 129 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/observed_bias.gz to data/alevin-quant/834-txome_k31_no_sa/aux_info/observed_bias.gz
-Completed 390.6 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
-Completed 390.8 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
-Completed 391.1 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
-Completed 391.3 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
-Completed 391.3 MiB/763.0 MiB (22.7 MiB/s) with 128 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/cmd_info.json to data/alevin-quant/834-txome_k31_no_sa/cmd_info.json
-Completed 391.3 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
-Completed 391.6 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
-Completed 391.8 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
-Completed 392.1 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
-Completed 392.3 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
-Completed 392.3 MiB/763.0 MiB (22.7 MiB/s) with 127 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/lib_format_counts.json to data/alevin-quant/834-txome_k31_no_sa/lib_format_counts.json
-Completed 392.3 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
-Completed 392.6 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
-Completed 392.8 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
-Completed 393.1 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
-Completed 393.3 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
-Completed 393.3 MiB/763.0 MiB (22.7 MiB/s) with 126 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/libParams/flenDist.txt to data/alevin-quant/834-txome_k31_no_sa/libParams/flenDist.txt
-Completed 393.3 MiB/763.0 MiB (22.7 MiB/s) with 125 file(s) remaining
-Completed 393.6 MiB/763.0 MiB (22.7 MiB/s) with 125 file(s) remaining
-Completed 393.6 MiB/763.0 MiB (22.7 MiB/s) with 125 file(s) remaining
-Completed 393.8 MiB/763.0 MiB (22.7 MiB/s) with 125 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/834-txome_k31_no_sa/aux_info/alevin_meta_info.json
-Completed 393.8 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
-Completed 394.1 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
-Completed 394.3 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
-Completed 394.6 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
-Completed 394.8 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
-Completed 394.8 MiB/763.0 MiB (22.7 MiB/s) with 124 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/logs/salmon_quant.log to data/alevin-quant/834-txome_k31_no_sa/logs/salmon_quant.log
-Completed 394.8 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 395.1 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 395.3 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 395.6 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 395.8 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 395.8 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 396.1 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 396.1 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 396.3 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 396.6 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-Completed 396.8 MiB/763.0 MiB (22.7 MiB/s) with 123 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/aux_info/expected_bias.gz to data/alevin-quant/834-txome_k31_no_sa/aux_info/expected_bias.gz
-Completed 396.8 MiB/763.0 MiB (22.7 MiB/s) with 122 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat.gz to data/alevin-quant/834-txome_k31_no_sa/alevin/quants_mat.gz
-Completed 396.8 MiB/763.0 MiB (22.7 MiB/s) with 121 file(s) remaining
-Completed 397.1 MiB/763.0 MiB (22.7 MiB/s) with 121 file(s) remaining
-Completed 397.1 MiB/763.0 MiB (22.7 MiB/s) with 121 file(s) remaining
-Completed 397.3 MiB/763.0 MiB (22.7 MiB/s) with 121 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/predictions.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/predictions.txt
-Completed 397.3 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 397.6 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 397.8 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 398.1 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 398.3 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 398.6 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 398.8 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 398.9 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 398.9 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 399.1 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 399.4 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-Completed 399.6 MiB/763.0 MiB (22.7 MiB/s) with 120 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat_rows.txt
-Completed 399.6 MiB/763.0 MiB (22.7 MiB/s) with 119 file(s) remaining
-Completed 399.9 MiB/763.0 MiB (22.7 MiB/s) with 119 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/alevin.log to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/alevin.log
-Completed 399.9 MiB/763.0 MiB (22.7 MiB/s) with 118 file(s) remaining
-Completed 399.9 MiB/763.0 MiB (22.6 MiB/s) with 118 file(s) remaining
-Completed 399.9 MiB/763.0 MiB (22.6 MiB/s) with 118 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/whitelist.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/whitelist.txt
-Completed 399.9 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
-Completed 400.1 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
-Completed 400.4 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
-Completed 400.6 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
-Completed 400.9 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
-Completed 401.1 MiB/763.0 MiB (22.6 MiB/s) with 117 file(s) remaining
-Completed 401.4 MiB/763.0 MiB (22.7 MiB/s) with 117 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/expected_bias.gz
-Completed 401.4 MiB/763.0 MiB (22.7 MiB/s) with 116 file(s) remaining
-Completed 401.6 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
-Completed 401.9 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
-Completed 402.1 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
-Completed 402.4 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
-Completed 402.4 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
-Completed 402.6 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
-Completed 402.9 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
-Completed 403.1 MiB/763.0 MiB (22.6 MiB/s) with 116 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/featureDump.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/featureDump.txt
-Completed 403.1 MiB/763.0 MiB (22.6 MiB/s) with 115 file(s) remaining
-Completed 403.4 MiB/763.0 MiB (22.6 MiB/s) with 115 file(s) remaining
-Completed 403.4 MiB/763.0 MiB (22.6 MiB/s) with 115 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/meta_info.json to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/meta_info.json
-Completed 403.4 MiB/763.0 MiB (22.6 MiB/s) with 114 file(s) remaining
-Completed 403.5 MiB/763.0 MiB (22.6 MiB/s) with 114 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat_cols.txt
-Completed 403.5 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 403.7 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 404.0 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 404.2 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 404.5 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 404.7 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 405.0 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 405.2 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 405.5 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 405.7 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 405.7 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 406.0 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-Completed 406.2 MiB/763.0 MiB (22.6 MiB/s) with 113 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/fld.gz to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/fld.gz
-Completed 406.2 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 406.5 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 406.7 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 407.0 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 407.2 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 407.5 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 407.7 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 408.0 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 408.2 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 408.5 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 408.7 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 409.0 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 409.2 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
-Completed 409.5 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 409.7 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
-Completed 410.0 MiB/763.0 MiB (22.6 MiB/s) with 112 file(s) remaining
-Completed 410.0 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
-Completed 410.3 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
-Completed 410.5 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
-Completed 410.8 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
-Completed 411.0 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
-Completed 411.3 MiB/763.0 MiB (22.5 MiB/s) with 112 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_tier_mat.gz
-Completed 411.3 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
-Completed 411.5 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
-Completed 411.8 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
-Completed 412.0 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
-Completed 412.3 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
-Completed 412.5 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
-Completed 412.8 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
-Completed 413.0 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
-Completed 413.3 MiB/763.0 MiB (22.5 MiB/s) with 111 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/quants_mat.gz
-Completed 413.3 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 413.5 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 413.8 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 414.0 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 414.3 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 414.5 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 414.8 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 414.9 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 415.2 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 415.4 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 415.7 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 415.9 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 416.2 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 416.4 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 416.7 MiB/763.0 MiB (22.4 MiB/s) with 110 file(s) remaining
-Completed 416.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 417.2 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 417.4 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 417.7 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 417.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 418.2 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 418.4 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 418.7 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 418.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 419.2 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 419.4 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 419.7 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 419.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 419.9 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-Completed 420.2 MiB/763.0 MiB (22.5 MiB/s) with 110 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/alevin_meta_info.json
-Completed 420.2 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
-Completed 420.4 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
-Completed 420.7 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
-Completed 420.9 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
-Completed 421.2 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
-Completed 421.4 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
-Completed 421.7 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
-Completed 421.7 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
-Completed 421.9 MiB/763.0 MiB (22.5 MiB/s) with 109 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/observed_bias.gz
-Completed 421.9 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
-Completed 422.2 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
-Completed 422.4 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
-Completed 422.7 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
-Completed 422.9 MiB/763.0 MiB (22.5 MiB/s) with 108 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/834-txome_k31_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/834-txome_k31_no_sa/alevin/raw_cb_frequency.txt
-Completed 422.9 MiB/763.0 MiB (22.5 MiB/s) with 107 file(s) remaining
-Completed 423.2 MiB/763.0 MiB (22.5 MiB/s) with 107 file(s) remaining
-Completed 423.4 MiB/763.0 MiB (22.5 MiB/s) with 107 file(s) remaining
-Completed 423.7 MiB/763.0 MiB (22.6 MiB/s) with 107 file(s) remaining
-Completed 423.9 MiB/763.0 MiB (22.6 MiB/s) with 107 file(s) remaining
-Completed 423.9 MiB/763.0 MiB (22.6 MiB/s) with 107 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/observed_bias_3p.gz
-Completed 423.9 MiB/763.0 MiB (22.6 MiB/s) with 106 file(s) remaining
-Completed 423.9 MiB/763.0 MiB (22.6 MiB/s) with 106 file(s) remaining
-Completed 424.2 MiB/763.0 MiB (22.6 MiB/s) with 106 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/lib_format_counts.json to data/alevin-quant/905_3-cdna_k23_no_sa/lib_format_counts.json
-Completed 424.2 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
-Completed 424.4 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
-Completed 424.7 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
-Completed 424.9 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
-Completed 425.2 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
-Completed 425.4 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
-Completed 425.4 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
-Completed 425.7 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
-Completed 425.7 MiB/763.0 MiB (22.6 MiB/s) with 105 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/cmd_info.json to data/alevin-quant/905_3-cdna_k23_no_sa/cmd_info.json
-Completed 425.7 MiB/763.0 MiB (22.6 MiB/s) with 104 file(s) remaining
-Completed 425.9 MiB/763.0 MiB (22.6 MiB/s) with 104 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/logs/salmon_quant.log to data/alevin-quant/905_3-cdna_k23_no_sa/logs/salmon_quant.log
-Completed 425.9 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
-Completed 426.2 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
-Completed 426.4 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
-Completed 426.7 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
-Completed 426.9 MiB/763.0 MiB (22.6 MiB/s) with 103 file(s) remaining
-Completed 426.9 MiB/763.0 MiB (22.5 MiB/s) with 103 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/predictions.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/predictions.txt
-Completed 426.9 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
-Completed 427.2 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
-Completed 427.4 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
-Completed 427.7 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
-Completed 427.9 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
-Completed 428.2 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
-Completed 428.2 MiB/763.0 MiB (22.5 MiB/s) with 102 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/libParams/flenDist.txt to data/alevin-quant/905_3-cdna_k23_no_sa/libParams/flenDist.txt
-Completed 428.2 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
-Completed 428.5 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
-Completed 428.7 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
-Completed 429.0 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
-Completed 429.2 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
-Completed 429.5 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
-Completed 429.7 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
-Completed 429.7 MiB/763.0 MiB (22.5 MiB/s) with 101 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/alevin.log to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/alevin.log
-Completed 429.7 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 430.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 430.2 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 430.5 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 430.7 MiB/763.0 MiB (22.4 MiB/s) with 100 file(s) remaining
-Completed 431.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 431.2 MiB/763.0 MiB (22.4 MiB/s) with 100 file(s) remaining
-Completed 431.5 MiB/763.0 MiB (22.4 MiB/s) with 100 file(s) remaining
-Completed 431.7 MiB/763.0 MiB (22.4 MiB/s) with 100 file(s) remaining
-Completed 432.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 432.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 432.2 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 432.5 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 432.7 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 433.0 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-Completed 433.2 MiB/763.0 MiB (22.5 MiB/s) with 100 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/featureDump.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/featureDump.txt
-Completed 433.2 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
-Completed 433.5 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
-Completed 433.7 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
-Completed 433.9 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
-Completed 434.2 MiB/763.0 MiB (22.5 MiB/s) with 99 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-cdna_k23_no_sa/aux_info/ambig_info.tsv
-Completed 434.2 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
-Completed 434.4 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
-Completed 434.7 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
-Completed 434.9 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
-Completed 435.2 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
-Completed 435.4 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
-Completed 435.4 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
-Completed 435.7 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
-Completed 435.9 MiB/763.0 MiB (22.5 MiB/s) with 98 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat_rows.txt
-Completed 435.9 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 436.2 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 436.4 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 436.7 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 436.9 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 437.2 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 437.4 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 437.7 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 437.9 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 438.2 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 438.4 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 438.7 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 438.9 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 439.2 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 439.4 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-Completed 439.6 MiB/763.0 MiB (22.5 MiB/s) with 97 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat.gz
-Completed 439.6 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-Completed 439.8 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-Completed 440.1 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-Completed 440.3 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-Completed 440.6 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-Completed 440.8 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-Completed 441.1 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-Completed 441.3 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-Completed 441.4 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-Completed 441.6 MiB/763.0 MiB (22.5 MiB/s) with 96 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_mat_cols.txt
-Completed 441.6 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
-Completed 441.9 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
-Completed 442.1 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
-Completed 442.4 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
-Completed 442.6 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
-Completed 442.9 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
-Completed 443.1 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
-Completed 443.4 MiB/763.0 MiB (22.5 MiB/s) with 95 file(s) remaining
-Completed 443.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 443.9 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 444.1 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 444.4 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 444.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 444.9 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 445.1 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 445.4 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 445.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 445.9 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 446.1 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 446.4 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 446.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-Completed 446.6 MiB/763.0 MiB (22.4 MiB/s) with 95 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/quants_tier_mat.gz
-Completed 446.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 446.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 447.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 447.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 447.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 447.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 448.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 448.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 448.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 448.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 449.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 449.4 MiB/763.0 MiB (22.2 MiB/s) with 94 file(s) remaining
-Completed 449.6 MiB/763.0 MiB (22.2 MiB/s) with 94 file(s) remaining
-Completed 449.9 MiB/763.0 MiB (22.2 MiB/s) with 94 file(s) remaining
-Completed 450.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 450.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 450.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 450.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 451.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 451.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 451.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 451.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 452.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 452.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 452.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 452.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 453.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 453.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 453.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 453.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 454.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 454.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 454.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 454.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 455.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 455.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 455.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 455.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 456.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 456.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 456.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 456.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 457.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 457.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 457.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 457.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 458.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 458.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 458.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 458.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 459.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 459.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 459.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 459.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 460.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 460.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 460.6 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 460.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 461.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 461.4 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 461.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 461.9 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 462.1 MiB/763.0 MiB (22.3 MiB/s) with 94 file(s) remaining
-Completed 462.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 462.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 462.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 463.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 463.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 463.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 463.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 464.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 464.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 464.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 464.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 465.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 465.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 465.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 465.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 466.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 466.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 466.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 466.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 467.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 467.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 467.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 467.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 468.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 468.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 468.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 468.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 469.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 469.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 469.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 469.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 470.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 470.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 470.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 470.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 471.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 471.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 471.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 471.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 472.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 472.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 472.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 472.9 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 473.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 473.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 473.6 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 473.9 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 474.1 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 474.4 MiB/763.0 MiB (22.4 MiB/s) with 94 file(s) remaining
-Completed 474.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 474.9 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 475.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 475.4 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 475.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 475.9 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 476.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 476.4 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 476.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 476.9 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 477.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 477.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 477.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 477.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 478.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 478.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 478.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 478.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 479.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 479.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 479.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 479.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 480.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 480.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 480.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 480.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 481.1 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 481.3 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 481.6 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 481.8 MiB/763.0 MiB (22.5 MiB/s) with 94 file(s) remaining
-Completed 482.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 482.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 482.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 482.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 483.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 483.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 483.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 483.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 484.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 484.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 484.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 484.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 485.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 485.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 485.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 485.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 486.1 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 486.3 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 486.6 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 486.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-Completed 486.8 MiB/763.0 MiB (22.6 MiB/s) with 94 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/whitelist.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/whitelist.txt
-Completed 486.8 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 487.1 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 487.3 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 487.6 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 487.8 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 488.1 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 488.3 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 488.6 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 488.8 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 489.1 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 489.3 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 489.3 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 489.6 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-Completed 489.8 MiB/763.0 MiB (22.6 MiB/s) with 93 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/alevin_meta_info.json
-Completed 489.8 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
-Completed 490.1 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
-Completed 490.3 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
-Completed 490.6 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
-Completed 490.8 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
-Completed 491.1 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
-Completed 491.3 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
-Completed 491.6 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
-Completed 491.6 MiB/763.0 MiB (22.6 MiB/s) with 92 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/fld.gz to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/fld.gz
-Completed 491.6 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
-Completed 491.8 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
-Completed 492.1 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
-Completed 492.3 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
-Completed 492.6 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
-Completed 492.8 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
-Completed 493.1 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
-Completed 493.3 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
-Completed 493.3 MiB/763.0 MiB (22.6 MiB/s) with 91 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/expected_bias.gz
-Completed 493.3 MiB/763.0 MiB (22.6 MiB/s) with 90 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k23_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-cdna_k23_no_sa/alevin/raw_cb_frequency.txt
-Completed 493.3 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-Completed 493.6 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-Completed 493.8 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-Completed 494.1 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-Completed 494.3 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-Completed 494.6 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-Completed 494.8 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-Completed 495.1 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-Completed 495.3 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-Completed 495.3 MiB/763.0 MiB (22.6 MiB/s) with 89 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/observed_bias_3p.gz
-Completed 495.3 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 495.6 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 495.8 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 496.1 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 496.3 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 496.6 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 496.8 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 496.8 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 497.1 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 497.3 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-Completed 497.3 MiB/763.0 MiB (22.6 MiB/s) with 88 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/cmd_info.json to data/alevin-quant/905_3-cdna_k31_full_sa/cmd_info.json
-Completed 497.3 MiB/763.0 MiB (22.6 MiB/s) with 87 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/observed_bias.gz
-Completed 497.3 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
-Completed 497.5 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
-Completed 497.7 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
-Completed 498.0 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
-Completed 498.2 MiB/763.0 MiB (22.6 MiB/s) with 86 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/ambig_info.tsv
-Completed 498.2 MiB/763.0 MiB (22.6 MiB/s) with 85 file(s) remaining
-Completed 498.5 MiB/763.0 MiB (22.6 MiB/s) with 85 file(s) remaining
-Completed 498.7 MiB/763.0 MiB (22.6 MiB/s) with 85 file(s) remaining
-Completed 499.0 MiB/763.0 MiB (22.7 MiB/s) with 85 file(s) remaining
-Completed 499.2 MiB/763.0 MiB (22.7 MiB/s) with 85 file(s) remaining
-Completed 499.2 MiB/763.0 MiB (22.7 MiB/s) with 85 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/libParams/flenDist.txt to data/alevin-quant/905_3-cdna_k31_full_sa/libParams/flenDist.txt
-Completed 499.2 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
-Completed 499.5 MiB/763.0 MiB (22.6 MiB/s) with 84 file(s) remaining
-Completed 499.7 MiB/763.0 MiB (22.6 MiB/s) with 84 file(s) remaining
-Completed 499.7 MiB/763.0 MiB (22.6 MiB/s) with 84 file(s) remaining
-Completed 500.0 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
-Completed 500.2 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
-Completed 500.3 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
-Completed 500.5 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
-Completed 500.8 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
-Completed 501.0 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
-Completed 501.0 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
-Completed 501.3 MiB/763.0 MiB (22.7 MiB/s) with 84 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/aux_info/meta_info.json to data/alevin-quant/905_3-cdna_k31_full_sa/aux_info/meta_info.json
-Completed 501.3 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
-Completed 501.5 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
-Completed 501.8 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
-Completed 502.0 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
-Completed 502.3 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
-Completed 502.5 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
-Completed 502.8 MiB/763.0 MiB (22.7 MiB/s) with 83 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/lib_format_counts.json to data/alevin-quant/905_3-cdna_k31_full_sa/lib_format_counts.json
-Completed 502.8 MiB/763.0 MiB (22.7 MiB/s) with 82 file(s) remaining
-Completed 503.0 MiB/763.0 MiB (22.7 MiB/s) with 82 file(s) remaining
-Completed 503.3 MiB/763.0 MiB (22.7 MiB/s) with 82 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/logs/salmon_quant.log to data/alevin-quant/905_3-cdna_k31_full_sa/logs/salmon_quant.log
-Completed 503.3 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
-Completed 503.5 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
-Completed 503.8 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
-Completed 504.0 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
-Completed 504.3 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
-Completed 504.5 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
-Completed 504.8 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
-Completed 505.0 MiB/763.0 MiB (22.7 MiB/s) with 81 file(s) remaining
-Completed 505.0 MiB/763.0 MiB (22.6 MiB/s) with 81 file(s) remaining
-Completed 505.3 MiB/763.0 MiB (22.6 MiB/s) with 81 file(s) remaining
-Completed 505.5 MiB/763.0 MiB (22.6 MiB/s) with 81 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/alevin.log to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/alevin.log
-Completed 505.5 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 505.8 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 506.0 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 506.3 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 506.5 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 506.8 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 507.0 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 507.3 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 507.5 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 507.8 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 508.0 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-Completed 508.0 MiB/763.0 MiB (22.6 MiB/s) with 80 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/featureDump.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/featureDump.txt
-Completed 508.0 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
-Completed 508.3 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
-Completed 508.5 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
-Completed 508.8 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
-Completed 509.0 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
-Completed 509.3 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
-Completed 509.5 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
-Completed 509.6 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
-Completed 509.9 MiB/763.0 MiB (22.6 MiB/s) with 79 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat_cols.txt
-Completed 509.9 MiB/763.0 MiB (22.6 MiB/s) with 78 file(s) remaining
-Completed 510.1 MiB/763.0 MiB (22.6 MiB/s) with 78 file(s) remaining
-Completed 510.4 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
-Completed 510.6 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
-Completed 510.9 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
-Completed 511.1 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
-Completed 511.4 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
-Completed 511.4 MiB/763.0 MiB (22.7 MiB/s) with 78 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat_rows.txt
-Completed 511.4 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-Completed 511.6 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-Completed 511.9 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-Completed 512.1 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-Completed 512.4 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-Completed 512.6 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-Completed 512.9 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-Completed 513.1 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-Completed 513.1 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-Completed 513.4 MiB/763.0 MiB (22.7 MiB/s) with 77 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/whitelist.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/whitelist.txt
-Completed 513.4 MiB/763.0 MiB (22.7 MiB/s) with 76 file(s) remaining
-Completed 513.6 MiB/763.0 MiB (22.7 MiB/s) with 76 file(s) remaining
-Completed 513.6 MiB/763.0 MiB (22.7 MiB/s) with 76 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/predictions.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/predictions.txt
-Completed 513.6 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
-Completed 513.9 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
-Completed 514.1 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
-Completed 514.4 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
-Completed 514.6 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
-Completed 514.6 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
-Completed 514.9 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
-Completed 515.1 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
-Completed 515.4 MiB/763.0 MiB (22.7 MiB/s) with 75 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/fld.gz to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/fld.gz
-Completed 515.4 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
-Completed 515.6 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
-Completed 515.9 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
-Completed 516.1 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
-Completed 516.4 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
-Completed 516.6 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
-Completed 516.6 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
-Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 74 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/observed_bias.gz
-Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 73 file(s) remaining
-Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 73 file(s) remaining
-Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 73 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/meta_info.json to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/meta_info.json
-Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 72 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/alevin_meta_info.json
-Completed 516.9 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-Completed 517.1 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-Completed 517.4 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-Completed 517.6 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-Completed 517.9 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-Completed 518.1 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-Completed 518.4 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-Completed 518.6 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-Completed 518.9 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-Completed 519.1 MiB/763.0 MiB (22.7 MiB/s) with 71 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_mat.gz
-Completed 519.1 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
-Completed 519.4 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
-Completed 519.6 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
-Completed 519.9 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
-Completed 520.1 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
-Completed 520.4 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
-Completed 520.4 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
-Completed 520.7 MiB/763.0 MiB (22.7 MiB/s) with 70 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/quants_tier_mat.gz
-Completed 520.7 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 520.9 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 521.2 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 521.4 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 521.7 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 521.9 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 522.2 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 522.4 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 522.7 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 522.9 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 523.2 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 523.4 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 523.7 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 523.9 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 524.2 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 524.4 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-Completed 524.6 MiB/763.0 MiB (22.7 MiB/s) with 69 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/ambig_info.tsv
-Completed 524.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 524.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 525.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 525.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 525.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 525.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 526.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 526.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 526.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 526.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 527.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 527.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 527.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 527.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 528.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 528.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 528.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 528.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 529.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 529.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 529.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 529.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 530.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 530.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 530.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 530.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 531.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 531.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 531.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 531.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 532.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 532.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 532.6 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 532.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 533.1 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 533.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 533.5 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 533.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 534.0 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 534.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 534.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 534.5 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 534.8 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 535.0 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-Completed 535.3 MiB/763.0 MiB (22.7 MiB/s) with 68 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/cmd_info.json to data/alevin-quant/905_3-cdna_k31_no_sa/cmd_info.json
-Completed 535.3 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 535.5 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 535.8 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 536.0 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 536.3 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 536.5 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 536.8 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 537.0 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 537.3 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 537.3 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-Completed 537.5 MiB/763.0 MiB (22.7 MiB/s) with 67 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/expected_bias.gz
-Completed 537.5 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
-Completed 537.8 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
-Completed 538.0 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
-Completed 538.3 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
-Completed 538.5 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
-Completed 538.5 MiB/763.0 MiB (22.7 MiB/s) with 66 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/logs/salmon_quant.log to data/alevin-quant/905_3-cdna_k31_no_sa/logs/salmon_quant.log
-Completed 538.5 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-Completed 538.8 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-Completed 539.0 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-Completed 539.3 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-Completed 539.5 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-Completed 539.8 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-Completed 540.0 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-Completed 540.3 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-Completed 540.5 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-Completed 540.5 MiB/763.0 MiB (22.7 MiB/s) with 65 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/libParams/flenDist.txt to data/alevin-quant/905_3-cdna_k31_no_sa/libParams/flenDist.txt
-Completed 540.5 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-Completed 540.8 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-Completed 541.0 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-Completed 541.3 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-Completed 541.5 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-Completed 541.8 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-Completed 542.0 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-Completed 542.3 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-Completed 542.5 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-Completed 542.5 MiB/763.0 MiB (22.7 MiB/s) with 64 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/lib_format_counts.json to data/alevin-quant/905_3-cdna_k31_no_sa/lib_format_counts.json
-Completed 542.5 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
-Completed 542.8 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
-Completed 543.0 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
-Completed 543.3 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
-Completed 543.5 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
-Completed 543.8 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
-Completed 544.0 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
-Completed 544.0 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
-Completed 544.3 MiB/763.0 MiB (22.7 MiB/s) with 63 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/featureDump.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/featureDump.txt
-Completed 544.3 MiB/763.0 MiB (22.7 MiB/s) with 62 file(s) remaining
-Completed 544.3 MiB/763.0 MiB (22.7 MiB/s) with 62 file(s) remaining
-Completed 544.6 MiB/763.0 MiB (22.7 MiB/s) with 62 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/predictions.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/predictions.txt
-Completed 544.6 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
-Completed 544.8 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
-Completed 545.1 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
-Completed 545.3 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
-Completed 545.6 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
-Completed 545.8 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
-Completed 546.1 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
-Completed 546.1 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
-Completed 546.1 MiB/763.0 MiB (22.7 MiB/s) with 61 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat_rows.txt
-Completed 546.1 MiB/763.0 MiB (22.7 MiB/s) with 60 file(s) remaining
-Completed 546.3 MiB/763.0 MiB (22.7 MiB/s) with 60 file(s) remaining
-Completed 546.6 MiB/763.0 MiB (22.7 MiB/s) with 60 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/alevin.log to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/alevin.log
-Completed 546.6 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
-Completed 546.8 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
-Completed 547.1 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
-Completed 547.3 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
-Completed 547.6 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
-Completed 547.8 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
-Completed 547.8 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
-Completed 548.1 MiB/763.0 MiB (22.7 MiB/s) with 59 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/whitelist.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/whitelist.txt
-Completed 548.1 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
-Completed 548.3 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
-Completed 548.6 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
-Completed 548.8 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
-Completed 549.1 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
-Completed 549.3 MiB/763.0 MiB (22.7 MiB/s) with 58 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_full_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-cdna_k31_full_sa/alevin/raw_cb_frequency.txt
-Completed 549.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 549.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 549.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 550.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 550.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 550.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 550.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 551.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 551.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 551.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 551.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 552.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 552.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 552.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 552.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 553.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 553.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 553.6 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 553.8 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 554.1 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 554.3 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-Completed 554.4 MiB/763.0 MiB (22.7 MiB/s) with 57 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat_cols.txt
-Completed 554.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 554.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 554.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 555.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 555.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 555.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 555.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 556.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 556.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 556.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 556.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 557.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 557.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 557.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 557.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 558.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 558.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 558.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 558.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 559.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 559.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 559.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 559.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 560.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 560.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 560.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 560.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 561.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 561.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 561.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 561.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 562.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 562.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 562.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 562.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 563.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 563.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 563.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 563.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 564.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 564.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 564.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 564.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 565.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 565.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 565.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 565.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 566.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 566.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 566.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 566.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 567.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 567.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 567.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 567.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 568.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 568.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 568.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 568.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 569.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 569.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 569.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 569.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 570.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 570.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 570.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 570.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 571.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 571.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 571.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 571.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 572.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 572.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 572.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 572.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 573.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 573.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 573.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 573.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 574.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 574.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 574.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 574.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 575.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 575.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 575.6 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 575.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 576.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 576.4 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 576.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 576.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 577.1 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 577.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 577.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 577.9 MiB/763.0 MiB (22.7 MiB/s) with 56 file(s) remaining
-Completed 578.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 578.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 578.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 578.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 579.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 579.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 579.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 579.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 580.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 580.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 580.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 580.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 581.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 581.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 581.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 581.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 582.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 582.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 582.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 582.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 583.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 583.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 583.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 583.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 584.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 584.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 584.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 584.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 585.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 585.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 585.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 585.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 586.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 586.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 586.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 586.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 587.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 587.4 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 587.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 587.9 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 588.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 588.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 588.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 588.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 589.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 589.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 589.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 589.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 590.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 590.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 590.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 590.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 591.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 591.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 591.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 591.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 592.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 592.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 592.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 592.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 593.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 593.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 593.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 593.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 594.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 594.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 594.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 594.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 595.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 595.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 595.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 595.8 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 596.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 596.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 596.6 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 596.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 597.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 597.3 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 597.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 597.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 598.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 598.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 598.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 598.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 599.1 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 599.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 599.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 599.8 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 600.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 600.3 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 600.6 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 600.8 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 601.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 601.3 MiB/763.0 MiB (22.8 MiB/s) with 56 file(s) remaining
-Completed 601.6 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 601.8 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 602.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 602.3 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 602.6 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 602.8 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-Completed 603.1 MiB/763.0 MiB (22.9 MiB/s) with 56 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-cdna_k31_no_sa/alevin/raw_cb_frequency.txt
-Completed 603.1 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 603.3 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 603.6 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 603.8 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 604.1 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 604.3 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 604.6 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 604.8 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 605.1 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 605.3 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 605.6 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-Completed 605.6 MiB/763.0 MiB (22.9 MiB/s) with 55 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-cdna_k31_no_sa/aux_info/observed_bias_3p.gz
-Completed 605.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 605.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 606.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 606.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 606.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 606.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 607.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 607.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 607.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 607.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 608.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 608.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 608.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 608.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 609.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 609.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 609.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 609.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 610.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 610.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 610.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 610.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 611.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 611.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 611.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 611.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 612.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 612.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 612.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 612.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 613.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 613.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 613.6 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 613.8 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 614.1 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 614.3 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 614.5 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-Completed 614.7 MiB/763.0 MiB (22.9 MiB/s) with 54 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/ambig_info.tsv
-Completed 614.7 MiB/763.0 MiB (22.9 MiB/s) with 53 file(s) remaining
-Completed 615.0 MiB/763.0 MiB (22.9 MiB/s) with 53 file(s) remaining
-Completed 615.0 MiB/763.0 MiB (22.9 MiB/s) with 53 file(s) remaining
-Completed 615.3 MiB/763.0 MiB (22.9 MiB/s) with 53 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_tier_mat.gz
-Completed 615.3 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-Completed 615.5 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-Completed 615.8 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-Completed 616.0 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-Completed 616.3 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-Completed 616.5 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-Completed 616.8 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-Completed 617.0 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-Completed 617.3 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-Completed 617.3 MiB/763.0 MiB (22.9 MiB/s) with 52 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/observed_bias_3p.gz
-Completed 617.3 MiB/763.0 MiB (22.9 MiB/s) with 51 file(s) remaining
-Completed 617.3 MiB/763.0 MiB (22.9 MiB/s) with 51 file(s) remaining
-Completed 617.5 MiB/763.0 MiB (22.9 MiB/s) with 51 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/alevin_meta_info.json
-Completed 617.5 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
-Completed 617.8 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
-Completed 618.0 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
-Completed 618.3 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
-Completed 618.5 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
-Completed 618.8 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
-Completed 618.8 MiB/763.0 MiB (22.9 MiB/s) with 50 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/expected_bias.gz
-Completed 618.8 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
-Completed 618.8 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
-Completed 619.0 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
-Completed 619.3 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
-Completed 619.5 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
-Completed 619.8 MiB/763.0 MiB (22.9 MiB/s) with 49 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/observed_bias.gz
-Completed 619.8 MiB/763.0 MiB (22.9 MiB/s) with 48 file(s) remaining
-Completed 619.8 MiB/763.0 MiB (22.9 MiB/s) with 48 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/lib_format_counts.json to data/alevin-quant/905_3-cdna_k31_partial_sa/lib_format_counts.json
-Completed 619.8 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
-Completed 620.0 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
-Completed 620.3 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
-Completed 620.3 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
-Completed 620.5 MiB/763.0 MiB (22.9 MiB/s) with 47 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/fld.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/fld.gz
-Completed 620.5 MiB/763.0 MiB (22.9 MiB/s) with 46 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/quants_mat.gz
-Completed 620.5 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
-Completed 620.7 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
-Completed 621.0 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
-Completed 621.0 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
-Completed 621.3 MiB/763.0 MiB (22.9 MiB/s) with 45 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/libParams/flenDist.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/libParams/flenDist.txt
-Completed 621.3 MiB/763.0 MiB (22.9 MiB/s) with 44 file(s) remaining
-Completed 621.5 MiB/763.0 MiB (22.9 MiB/s) with 44 file(s) remaining
-Completed 621.5 MiB/763.0 MiB (22.9 MiB/s) with 44 file(s) remaining
-Completed 621.8 MiB/763.0 MiB (22.9 MiB/s) with 44 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/cmd_info.json to data/alevin-quant/905_3-cdna_k31_partial_sa/cmd_info.json
-Completed 621.8 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 622.0 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 622.3 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 622.5 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 622.8 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 623.0 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 623.3 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 623.5 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 623.5 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 623.8 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 623.8 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 624.0 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-Completed 624.3 MiB/763.0 MiB (22.9 MiB/s) with 43 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/featureDump.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/featureDump.txt
-Completed 624.3 MiB/763.0 MiB (22.9 MiB/s) with 42 file(s) remaining
-Completed 624.5 MiB/763.0 MiB (22.9 MiB/s) with 42 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/predictions.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/predictions.txt
-Completed 624.5 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
-Completed 624.8 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
-Completed 625.0 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
-Completed 625.3 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
-Completed 625.5 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
-Completed 625.8 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
-Completed 626.0 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
-Completed 626.3 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
-Completed 626.5 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
-Completed 626.8 MiB/763.0 MiB (22.9 MiB/s) with 41 file(s) remaining
-Completed 627.0 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
-Completed 627.3 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
-Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
-Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
-Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 41 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/meta_info.json to data/alevin-quant/905_3-cdna_k31_partial_sa/aux_info/meta_info.json
-Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 40 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat_rows.txt
-Completed 627.5 MiB/763.0 MiB (23.0 MiB/s) with 39 file(s) remaining
-Completed 627.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 628.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 628.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 628.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 628.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 629.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 629.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 629.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 629.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 630.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 630.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 630.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 630.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 631.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 631.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 631.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 631.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 632.0 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 632.3 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 632.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 632.5 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-Completed 632.8 MiB/763.0 MiB (22.9 MiB/s) with 39 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/logs/salmon_quant.log to data/alevin-quant/905_3-cdna_k31_partial_sa/logs/salmon_quant.log
-Completed 632.8 MiB/763.0 MiB (22.9 MiB/s) with 38 file(s) remaining
-Completed 633.0 MiB/763.0 MiB (22.9 MiB/s) with 38 file(s) remaining
-Completed 633.2 MiB/763.0 MiB (22.9 MiB/s) with 38 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat_cols.txt
-Completed 633.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 633.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 633.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 634.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 634.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 634.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 634.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 635.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 635.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 635.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 635.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 636.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 636.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 636.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 636.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 637.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 637.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 637.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 637.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 638.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 638.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 638.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 638.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 639.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 639.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 639.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 639.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 640.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 640.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 640.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 640.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 641.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 641.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 641.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 641.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 642.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 642.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 642.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 642.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 643.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 643.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 643.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 643.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 644.0 MiB/763.0 MiB (23.0 MiB/s) with 37 file(s) remaining
-Completed 644.2 MiB/763.0 MiB (23.0 MiB/s) with 37 file(s) remaining
-Completed 644.5 MiB/763.0 MiB (23.0 MiB/s) with 37 file(s) remaining
-Completed 644.7 MiB/763.0 MiB (23.0 MiB/s) with 37 file(s) remaining
-Completed 645.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 645.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 645.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 645.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 646.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 646.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 646.5 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 646.7 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 647.0 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 647.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-Completed 647.5 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
-Completed 647.7 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
-Completed 648.0 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
-Completed 648.2 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
-Completed 648.5 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
-Completed 648.7 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
-Completed 649.0 MiB/763.0 MiB (22.8 MiB/s) with 37 file(s) remaining
-Completed 649.2 MiB/763.0 MiB (22.9 MiB/s) with 37 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_mat.gz
-Completed 649.2 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
-Completed 649.5 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
-Completed 649.7 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
-Completed 650.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 650.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 650.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 650.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 651.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 651.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 651.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 651.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 652.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 652.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 652.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 652.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 653.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 653.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 653.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 653.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 654.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 654.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 654.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 654.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 655.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 655.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 655.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 655.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 656.0 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 656.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 656.5 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
-Completed 656.7 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
-Completed 657.0 MiB/763.0 MiB (22.9 MiB/s) with 36 file(s) remaining
-Completed 657.2 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 657.5 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 657.7 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 657.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 658.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 658.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 658.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 658.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 659.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 659.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 659.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 659.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 660.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 660.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 660.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 660.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 661.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 661.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 661.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 661.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 662.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 662.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 662.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 662.9 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 663.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 663.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 663.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 663.9 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 664.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 664.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 664.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 664.9 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 665.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 665.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 665.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 665.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 666.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 666.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 666.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 666.9 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 667.1 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 667.4 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 667.6 MiB/763.0 MiB (22.7 MiB/s) with 36 file(s) remaining
-Completed 667.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 668.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 668.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 668.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 668.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 669.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 669.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 669.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 669.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 670.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 670.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 670.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 670.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 671.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 671.4 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 671.6 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 671.9 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-Completed 672.1 MiB/763.0 MiB (22.8 MiB/s) with 36 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-cdna_k31_partial_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-cdna_k31_partial_sa/alevin/raw_cb_frequency.txt
-Completed 672.1 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
-Completed 672.4 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
-Completed 672.6 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
-Completed 672.9 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
-Completed 672.9 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
-Completed 673.1 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
-Completed 673.1 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
-Completed 673.4 MiB/763.0 MiB (22.8 MiB/s) with 35 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/whitelist.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/whitelist.txt
-Completed 673.4 MiB/763.0 MiB (22.8 MiB/s) with 34 file(s) remaining
-Completed 673.6 MiB/763.0 MiB (22.8 MiB/s) with 34 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-txome_k23_no_sa/alevin/quants_tier_mat.gz
-Completed 673.6 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-Completed 673.9 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-Completed 674.1 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-Completed 674.4 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-Completed 674.6 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-Completed 674.9 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-Completed 675.1 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-Completed 675.4 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-Completed 675.6 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-Completed 675.6 MiB/763.0 MiB (22.8 MiB/s) with 33 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/meta_info.json to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/meta_info.json
-Completed 675.6 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
-Completed 675.9 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
-Completed 676.1 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
-Completed 676.4 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
-Completed 676.4 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
-Completed 676.6 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
-Completed 676.9 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
-Completed 677.1 MiB/763.0 MiB (22.8 MiB/s) with 32 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/observed_bias.gz
-Completed 677.1 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
-Completed 677.4 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
-Completed 677.6 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
-Completed 677.6 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
-Completed 677.9 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
-Completed 678.1 MiB/763.0 MiB (22.8 MiB/s) with 31 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/alevin_meta_info.json
-Completed 678.1 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
-Completed 678.4 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
-Completed 678.6 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
-Completed 678.9 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
-Completed 679.1 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
-Completed 679.4 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
-Completed 679.4 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
-Completed 679.6 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
-Completed 679.9 MiB/763.0 MiB (22.8 MiB/s) with 30 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/alevin.log to data/alevin-quant/905_3-txome_k23_no_sa/alevin/alevin.log
-Completed 679.9 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
-Completed 680.1 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
-Completed 680.1 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
-Completed 680.4 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
-Completed 680.6 MiB/763.0 MiB (22.8 MiB/s) with 29 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/fld.gz to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/fld.gz
-Completed 680.6 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-Completed 680.9 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-Completed 681.1 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-Completed 681.4 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-Completed 681.6 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-Completed 681.9 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-Completed 682.1 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-Completed 682.4 MiB/763.0 MiB (22.9 MiB/s) with 28 file(s) remaining
-Completed 682.6 MiB/763.0 MiB (22.9 MiB/s) with 28 file(s) remaining
-Completed 682.9 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-Completed 683.1 MiB/763.0 MiB (22.9 MiB/s) with 28 file(s) remaining
-Completed 683.1 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-Completed 683.3 MiB/763.0 MiB (22.8 MiB/s) with 28 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/expected_bias.gz
-Completed 683.3 MiB/763.0 MiB (22.8 MiB/s) with 27 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/ambig_info.tsv
-Completed 683.3 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
-Completed 683.3 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
-Completed 683.5 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
-Completed 683.8 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
-Completed 684.0 MiB/763.0 MiB (22.8 MiB/s) with 26 file(s) remaining
-Completed 684.3 MiB/763.0 MiB (22.9 MiB/s) with 26 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-txome_k23_no_sa/aux_info/observed_bias_3p.gz
-Completed 684.3 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
-Completed 684.5 MiB/763.0 MiB (22.8 MiB/s) with 25 file(s) remaining
-Completed 684.8 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
-Completed 685.0 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
-Completed 685.3 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
-Completed 685.3 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
-Completed 685.5 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
-Completed 685.8 MiB/763.0 MiB (22.9 MiB/s) with 25 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/libParams/flenDist.txt to data/alevin-quant/905_3-txome_k23_no_sa/libParams/flenDist.txt
-Completed 685.8 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
-Completed 685.8 MiB/763.0 MiB (22.8 MiB/s) with 24 file(s) remaining
-Completed 686.0 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
-Completed 686.3 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
-Completed 686.5 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
-Completed 686.5 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
-Completed 686.8 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
-Completed 687.0 MiB/763.0 MiB (22.9 MiB/s) with 24 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/lib_format_counts.json to data/alevin-quant/905_3-txome_k23_no_sa/lib_format_counts.json
-Completed 687.0 MiB/763.0 MiB (22.9 MiB/s) with 23 file(s) remaining
-Completed 687.3 MiB/763.0 MiB (22.9 MiB/s) with 23 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/cmd_info.json to data/alevin-quant/905_3-txome_k23_no_sa/cmd_info.json
-Completed 687.3 MiB/763.0 MiB (22.9 MiB/s) with 22 file(s) remaining
-Completed 687.5 MiB/763.0 MiB (22.9 MiB/s) with 22 file(s) remaining
-Completed 687.5 MiB/763.0 MiB (22.9 MiB/s) with 22 file(s) remaining
-Completed 687.8 MiB/763.0 MiB (22.9 MiB/s) with 22 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/logs/salmon_quant.log to data/alevin-quant/905_3-txome_k23_no_sa/logs/salmon_quant.log
-Completed 687.8 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
-Completed 688.0 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
-Completed 688.3 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
-Completed 688.5 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
-Completed 688.8 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
-Completed 689.0 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
-Completed 689.3 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
-Completed 689.3 MiB/763.0 MiB (22.9 MiB/s) with 21 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat_rows.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat_rows.txt
-Completed 689.3 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-Completed 689.5 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-Completed 689.8 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-Completed 690.0 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-Completed 690.3 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-Completed 690.5 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-Completed 690.8 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-Completed 691.0 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-Completed 691.3 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-Completed 691.3 MiB/763.0 MiB (22.9 MiB/s) with 20 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/alevin.log to data/alevin-quant/905_3-txome_k31_no_sa/alevin/alevin.log
-Completed 691.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 691.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 691.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 692.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 692.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 692.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 692.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 693.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 693.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 693.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 693.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 694.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 694.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 694.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 694.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 695.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 695.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 695.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 695.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 696.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 696.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 696.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 696.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 697.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 697.3 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 697.5 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 697.8 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 698.0 MiB/763.0 MiB (22.9 MiB/s) with 19 file(s) remaining
-Completed 698.3 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
-Completed 698.5 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
-Completed 698.8 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
-Completed 699.0 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
-Completed 699.3 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
-Completed 699.5 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
-Completed 699.6 MiB/763.0 MiB (23.0 MiB/s) with 19 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_tier_mat.gz to data/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_tier_mat.gz
-Completed 699.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 699.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 700.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 700.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 700.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 700.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 701.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 701.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 701.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 701.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 702.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 702.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 702.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 702.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 703.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 703.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 703.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 703.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 704.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 704.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 704.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 704.8 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 705.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 705.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 705.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 705.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 706.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 706.3 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 706.6 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 706.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 707.1 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 707.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 707.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 707.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 708.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 708.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 708.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 708.8 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 709.1 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 709.3 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 709.6 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 709.8 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 710.1 MiB/763.0 MiB (22.9 MiB/s) with 18 file(s) remaining
-Completed 710.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 710.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 710.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 711.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 711.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 711.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 711.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 712.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 712.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 712.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 712.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 713.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 713.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 713.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 713.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 714.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 714.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 714.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 714.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 715.1 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 715.3 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 715.6 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 715.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-Completed 715.8 MiB/763.0 MiB (23.0 MiB/s) with 18 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/whitelist.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/whitelist.txt
-Completed 715.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 716.1 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 716.3 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 716.6 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 716.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 717.1 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 717.3 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 717.6 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 717.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 717.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 718.1 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 718.3 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 718.6 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 718.8 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-Completed 719.1 MiB/763.0 MiB (23.0 MiB/s) with 17 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/alevin_meta_info.json to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/alevin_meta_info.json
-Completed 719.1 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 719.3 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 719.6 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 719.8 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 720.1 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 720.3 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 720.6 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 720.8 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
-Completed 721.1 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
-Completed 721.3 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 721.6 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
-Completed 721.8 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 722.1 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
-Completed 722.1 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 722.3 MiB/763.0 MiB (23.0 MiB/s) with 16 file(s) remaining
-Completed 722.6 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
-Completed 722.8 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
-Completed 723.1 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
-Completed 723.3 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
-Completed 723.6 MiB/763.0 MiB (23.1 MiB/s) with 16 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/expected_bias.gz to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/expected_bias.gz
-Completed 723.6 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 723.8 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 724.1 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 724.3 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 724.6 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 724.8 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 725.0 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 725.2 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 725.5 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 725.7 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 726.0 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 726.2 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 726.5 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-Completed 726.5 MiB/763.0 MiB (23.1 MiB/s) with 15 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k23_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-txome_k23_no_sa/alevin/raw_cb_frequency.txt
-Completed 726.5 MiB/763.0 MiB (23.1 MiB/s) with 14 file(s) remaining
-Completed 726.7 MiB/763.0 MiB (23.1 MiB/s) with 14 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/fld.gz to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/fld.gz
-Completed 726.7 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
-Completed 726.7 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
-Completed 727.0 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
-Completed 727.2 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
-Completed 727.5 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
-Completed 727.7 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
-Completed 728.0 MiB/763.0 MiB (23.1 MiB/s) with 13 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/meta_info.json to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/meta_info.json
-Completed 728.0 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 728.2 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 728.5 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 728.7 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 729.0 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 729.2 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 729.5 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 729.7 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 729.7 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 730.0 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-Completed 730.2 MiB/763.0 MiB (23.1 MiB/s) with 12 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/observed_bias.gz to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/observed_bias.gz
-Completed 730.2 MiB/763.0 MiB (23.1 MiB/s) with 11 file(s) remaining
-Completed 730.2 MiB/763.0 MiB (23.1 MiB/s) with 11 file(s) remaining
-Completed 730.5 MiB/763.0 MiB (23.1 MiB/s) with 11 file(s) remaining
-Completed 730.7 MiB/763.0 MiB (23.1 MiB/s) with 11 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/observed_bias_3p.gz to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/observed_bias_3p.gz
-Completed 730.7 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 731.0 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 731.2 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 731.5 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 731.7 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 732.0 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 732.2 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 732.5 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 732.5 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 732.5 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-Completed 732.7 MiB/763.0 MiB (23.1 MiB/s) with 10 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/cmd_info.json to data/alevin-quant/905_3-txome_k31_no_sa/cmd_info.json
-Completed 732.7 MiB/763.0 MiB (23.1 MiB/s) with 9 file(s) remaining
-Completed 733.0 MiB/763.0 MiB (23.1 MiB/s) with 9 file(s) remaining
-Completed 733.2 MiB/763.0 MiB (23.1 MiB/s) with 9 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/libParams/flenDist.txt to data/alevin-quant/905_3-txome_k31_no_sa/libParams/flenDist.txt
-Completed 733.2 MiB/763.0 MiB (23.1 MiB/s) with 8 file(s) remaining
-Completed 733.5 MiB/763.0 MiB (23.1 MiB/s) with 8 file(s) remaining
-Completed 733.7 MiB/763.0 MiB (23.1 MiB/s) with 8 file(s) remaining
-Completed 733.9 MiB/763.0 MiB (23.1 MiB/s) with 8 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/aux_info/ambig_info.tsv to data/alevin-quant/905_3-txome_k31_no_sa/aux_info/ambig_info.tsv
-Completed 733.9 MiB/763.0 MiB (23.1 MiB/s) with 7 file(s) remaining
-Completed 734.1 MiB/763.0 MiB (23.1 MiB/s) with 7 file(s) remaining
-Completed 734.1 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
-Completed 734.1 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
-Completed 734.4 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
-Completed 734.4 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
-Completed 734.6 MiB/763.0 MiB (23.0 MiB/s) with 7 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/lib_format_counts.json to data/alevin-quant/905_3-txome_k31_no_sa/lib_format_counts.json
-Completed 734.6 MiB/763.0 MiB (23.0 MiB/s) with 6 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/logs/salmon_quant.log to data/alevin-quant/905_3-txome_k31_no_sa/logs/salmon_quant.log
-Completed 734.6 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 734.9 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 735.1 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 735.4 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 735.6 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 735.9 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 736.1 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 736.4 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 736.6 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 736.7 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 736.9 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 737.2 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 737.4 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 737.7 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 737.9 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 738.2 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-Completed 738.4 MiB/763.0 MiB (23.0 MiB/s) with 5 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/predictions.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/predictions.txt
-Completed 738.4 MiB/763.0 MiB (23.0 MiB/s) with 4 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/featureDump.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/featureDump.txt
-Completed 738.4 MiB/763.0 MiB (23.0 MiB/s) with 3 file(s) remaining
-Completed 738.7 MiB/763.0 MiB (23.0 MiB/s) with 3 file(s) remaining
-Completed 738.9 MiB/763.0 MiB (23.0 MiB/s) with 3 file(s) remaining
-Completed 739.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 739.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 739.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 739.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 740.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 740.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 740.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 740.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 741.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 741.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 741.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 741.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 742.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 742.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 742.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 742.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 743.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 743.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 743.7 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
-Completed 743.9 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
-Completed 744.2 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
-Completed 744.4 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
-Completed 744.7 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
-Completed 744.9 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
-Completed 745.2 MiB/763.0 MiB (22.8 MiB/s) with 3 file(s) remaining
-Completed 745.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 745.7 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 745.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 746.2 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 746.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 746.6 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 746.9 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 747.1 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 747.4 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-Completed 747.6 MiB/763.0 MiB (22.9 MiB/s) with 3 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat_cols.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat_cols.txt
-Completed 747.6 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 747.9 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 748.1 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 748.4 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 748.6 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 748.9 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 749.1 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 749.4 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 749.6 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 749.9 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 750.1 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 750.4 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 750.6 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 750.9 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 751.1 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 751.4 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 751.6 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 751.8 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 752.0 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 752.3 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 752.5 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 752.8 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 753.0 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 753.3 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 753.5 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 753.8 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 754.0 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 754.3 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 754.5 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 754.8 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 755.0 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 755.3 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 755.5 MiB/763.0 MiB (22.8 MiB/s) with 2 file(s) remaining
-Completed 755.8 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 756.0 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 756.2 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-Completed 756.5 MiB/763.0 MiB (22.9 MiB/s) with 2 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat.gz to data/alevin-quant/905_3-txome_k31_no_sa/alevin/quants_mat.gz
-Completed 756.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 756.7 MiB/763.0 MiB (22.8 MiB/s) with 1 file(s) remaining
-Completed 757.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 757.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 757.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 757.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 758.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 758.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 758.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 758.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 759.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 759.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 759.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 759.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 760.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 760.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 760.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 760.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 761.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 761.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 761.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 761.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 762.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 762.2 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 762.5 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 762.7 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-Completed 763.0 MiB/763.0 MiB (22.9 MiB/s) with 1 file(s) remaining
-download: s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant/905_3-txome_k31_no_sa/alevin/raw_cb_frequency.txt to data/alevin-quant/905_3-txome_k31_no_sa/alevin/raw_cb_frequency.txt
-

Get the sample list and make a data frame with sample info

- +
quant_dirs <- list.dirs(data_dir, full.names = FALSE, recursive = FALSE)
 
+# split ids into components for later processing
 quant_info <- data.frame (quant_dir = quant_dirs, info = quant_dirs) %>%
   tidyr::separate(info, sep = "[-]", 
                   into = c("sample", "index_type")) %>%
@@ -5610,11 +1880,734 @@ 

Sync S3 files

Get Annotations from AnnotationHub

- -
hub = AnnotationHub::AnnotationHub(ask = FALSE)
-# Ensembl v100 Homo Sapiens is AH79689
-ensdb = hub[["AH79689"]]
-ensg <- genes(ensdb)
+ +
hub = AnnotationHub::AnnotationHub(ask = FALSE)
+ + +

+  |                                                                                 
+  |                                                                           |   0%
+  |                                                                                 
+  |                                                                           |   1%
+  |                                                                                 
+  |=                                                                          |   1%
+  |                                                                                 
+  |=                                                                          |   2%
+  |                                                                                 
+  |==                                                                         |   2%
+  |                                                                                 
+  |==                                                                         |   3%
+  |                                                                                 
+  |===                                                                        |   3%
+  |                                                                                 
+  |===                                                                        |   4%
+  |                                                                                 
+  |===                                                                        |   5%
+  |                                                                                 
+  |====                                                                       |   5%
+  |                                                                                 
+  |====                                                                       |   6%
+  |                                                                                 
+  |=====                                                                      |   6%
+  |                                                                                 
+  |=====                                                                      |   7%
+  |                                                                                 
+  |======                                                                     |   7%
+  |                                                                                 
+  |======                                                                     |   8%
+  |                                                                                 
+  |======                                                                     |   9%
+  |                                                                                 
+  |=======                                                                    |   9%
+  |                                                                                 
+  |=======                                                                    |  10%
+  |                                                                                 
+  |========                                                                   |  10%
+  |                                                                                 
+  |========                                                                   |  11%
+  |                                                                                 
+  |=========                                                                  |  11%
+  |                                                                                 
+  |=========                                                                  |  12%
+  |                                                                                 
+  |=========                                                                  |  13%
+  |                                                                                 
+  |==========                                                                 |  13%
+  |                                                                                 
+  |==========                                                                 |  14%
+  |                                                                                 
+  |===========                                                                |  14%
+  |                                                                                 
+  |===========                                                                |  15%
+  |                                                                                 
+  |============                                                               |  15%
+  |                                                                                 
+  |============                                                               |  16%
+  |                                                                                 
+  |============                                                               |  17%
+  |                                                                                 
+  |=============                                                              |  17%
+  |                                                                                 
+  |=============                                                              |  18%
+  |                                                                                 
+  |==============                                                             |  18%
+  |                                                                                 
+  |==============                                                             |  19%
+  |                                                                                 
+  |===============                                                            |  19%
+  |                                                                                 
+  |===============                                                            |  20%
+  |                                                                                 
+  |===============                                                            |  21%
+  |                                                                                 
+  |================                                                           |  21%
+  |                                                                                 
+  |================                                                           |  22%
+  |                                                                                 
+  |=================                                                          |  22%
+  |                                                                                 
+  |=================                                                          |  23%
+  |                                                                                 
+  |==================                                                         |  23%
+  |                                                                                 
+  |==================                                                         |  24%
+  |                                                                                 
+  |==================                                                         |  25%
+  |                                                                                 
+  |===================                                                        |  25%
+  |                                                                                 
+  |===================                                                        |  26%
+  |                                                                                 
+  |====================                                                       |  26%
+  |                                                                                 
+  |====================                                                       |  27%
+  |                                                                                 
+  |=====================                                                      |  27%
+  |                                                                                 
+  |=====================                                                      |  28%
+  |                                                                                 
+  |=====================                                                      |  29%
+  |                                                                                 
+  |======================                                                     |  29%
+  |                                                                                 
+  |======================                                                     |  30%
+  |                                                                                 
+  |=======================                                                    |  30%
+  |                                                                                 
+  |=======================                                                    |  31%
+  |                                                                                 
+  |========================                                                   |  31%
+  |                                                                                 
+  |========================                                                   |  32%
+  |                                                                                 
+  |========================                                                   |  33%
+  |                                                                                 
+  |=========================                                                  |  33%
+  |                                                                                 
+  |=========================                                                  |  34%
+  |                                                                                 
+  |==========================                                                 |  34%
+  |                                                                                 
+  |==========================                                                 |  35%
+  |                                                                                 
+  |===========================                                                |  35%
+  |                                                                                 
+  |===========================                                                |  36%
+  |                                                                                 
+  |===========================                                                |  37%
+  |                                                                                 
+  |============================                                               |  37%
+  |                                                                                 
+  |============================                                               |  38%
+  |                                                                                 
+  |=============================                                              |  38%
+  |                                                                                 
+  |=============================                                              |  39%
+  |                                                                                 
+  |==============================                                             |  39%
+  |                                                                                 
+  |==============================                                             |  40%
+  |                                                                                 
+  |==============================                                             |  41%
+  |                                                                                 
+  |===============================                                            |  41%
+  |                                                                                 
+  |===============================                                            |  42%
+  |                                                                                 
+  |================================                                           |  42%
+  |                                                                                 
+  |================================                                           |  43%
+  |                                                                                 
+  |=================================                                          |  43%
+  |                                                                                 
+  |=================================                                          |  44%
+  |                                                                                 
+  |=================================                                          |  45%
+  |                                                                                 
+  |==================================                                         |  45%
+  |                                                                                 
+  |==================================                                         |  46%
+  |                                                                                 
+  |===================================                                        |  46%
+  |                                                                                 
+  |===================================                                        |  47%
+  |                                                                                 
+  |====================================                                       |  47%
+  |                                                                                 
+  |====================================                                       |  48%
+  |                                                                                 
+  |====================================                                       |  49%
+  |                                                                                 
+  |=====================================                                      |  49%
+  |                                                                                 
+  |=====================================                                      |  50%
+  |                                                                                 
+  |======================================                                     |  50%
+  |                                                                                 
+  |======================================                                     |  51%
+  |                                                                                 
+  |=======================================                                    |  51%
+  |                                                                                 
+  |=======================================                                    |  52%
+  |                                                                                 
+  |=======================================                                    |  53%
+  |                                                                                 
+  |========================================                                   |  53%
+  |                                                                                 
+  |========================================                                   |  54%
+  |                                                                                 
+  |=========================================                                  |  54%
+  |                                                                                 
+  |=========================================                                  |  55%
+  |                                                                                 
+  |==========================================                                 |  55%
+  |                                                                                 
+  |==========================================                                 |  56%
+  |                                                                                 
+  |==========================================                                 |  57%
+  |                                                                                 
+  |===========================================                                |  57%
+  |                                                                                 
+  |===========================================                                |  58%
+  |                                                                                 
+  |============================================                               |  58%
+  |                                                                                 
+  |============================================                               |  59%
+  |                                                                                 
+  |=============================================                              |  59%
+  |                                                                                 
+  |=============================================                              |  60%
+  |                                                                                 
+  |=============================================                              |  61%
+  |                                                                                 
+  |==============================================                             |  61%
+  |                                                                                 
+  |==============================================                             |  62%
+  |                                                                                 
+  |===============================================                            |  62%
+  |                                                                                 
+  |===============================================                            |  63%
+  |                                                                                 
+  |================================================                           |  63%
+  |                                                                                 
+  |================================================                           |  64%
+  |                                                                                 
+  |================================================                           |  65%
+  |                                                                                 
+  |=================================================                          |  65%
+  |                                                                                 
+  |=================================================                          |  66%
+  |                                                                                 
+  |==================================================                         |  66%
+  |                                                                                 
+  |==================================================                         |  67%
+  |                                                                                 
+  |===================================================                        |  67%
+  |                                                                                 
+  |===================================================                        |  68%
+  |                                                                                 
+  |===================================================                        |  69%
+  |                                                                                 
+  |====================================================                       |  69%
+  |                                                                                 
+  |====================================================                       |  70%
+  |                                                                                 
+  |=====================================================                      |  70%
+  |                                                                                 
+  |=====================================================                      |  71%
+  |                                                                                 
+  |======================================================                     |  71%
+  |                                                                                 
+  |======================================================                     |  72%
+  |                                                                                 
+  |======================================================                     |  73%
+  |                                                                                 
+  |=======================================================                    |  73%
+  |                                                                                 
+  |=======================================================                    |  74%
+  |                                                                                 
+  |========================================================                   |  74%
+  |                                                                                 
+  |========================================================                   |  75%
+  |                                                                                 
+  |=========================================================                  |  75%
+  |                                                                                 
+  |=========================================================                  |  76%
+  |                                                                                 
+  |=========================================================                  |  77%
+  |                                                                                 
+  |==========================================================                 |  77%
+  |                                                                                 
+  |==========================================================                 |  78%
+  |                                                                                 
+  |===========================================================                |  78%
+  |                                                                                 
+  |===========================================================                |  79%
+  |                                                                                 
+  |============================================================               |  79%
+  |                                                                                 
+  |============================================================               |  80%
+  |                                                                                 
+  |============================================================               |  81%
+  |                                                                                 
+  |=============================================================              |  81%
+  |                                                                                 
+  |=============================================================              |  82%
+  |                                                                                 
+  |==============================================================             |  82%
+  |                                                                                 
+  |==============================================================             |  83%
+  |                                                                                 
+  |===============================================================            |  83%
+  |                                                                                 
+  |===============================================================            |  84%
+  |                                                                                 
+  |===============================================================            |  85%
+  |                                                                                 
+  |================================================================           |  85%
+  |                                                                                 
+  |================================================================           |  86%
+  |                                                                                 
+  |=================================================================          |  86%
+  |                                                                                 
+  |=================================================================          |  87%
+  |                                                                                 
+  |==================================================================         |  87%
+  |                                                                                 
+  |==================================================================         |  88%
+  |                                                                                 
+  |==================================================================         |  89%
+  |                                                                                 
+  |===================================================================        |  89%
+  |                                                                                 
+  |===================================================================        |  90%
+  |                                                                                 
+  |====================================================================       |  90%
+  |                                                                                 
+  |====================================================================       |  91%
+  |                                                                                 
+  |=====================================================================      |  91%
+  |                                                                                 
+  |=====================================================================      |  92%
+  |                                                                                 
+  |=====================================================================      |  93%
+  |                                                                                 
+  |======================================================================     |  93%
+  |                                                                                 
+  |======================================================================     |  94%
+  |                                                                                 
+  |=======================================================================    |  94%
+  |                                                                                 
+  |=======================================================================    |  95%
+  |                                                                                 
+  |========================================================================   |  95%
+  |                                                                                 
+  |========================================================================   |  96%
+  |                                                                                 
+  |========================================================================   |  97%
+  |                                                                                 
+  |=========================================================================  |  97%
+  |                                                                                 
+  |=========================================================================  |  98%
+  |                                                                                 
+  |========================================================================== |  98%
+  |                                                                                 
+  |========================================================================== |  99%
+  |                                                                                 
+  |===========================================================================|  99%
+  |                                                                                 
+  |===========================================================================| 100%
+ + +
snapshotDate(): 2020-04-27
+ + +
# Ensembl v100 Homo Sapiens is AH79689
+ensdb = hub[["AH79689"]]
+ + +
downloading 1 resources
+retrieving 1 resource
+
+  |                                                                                 
+  |                                                                           |   0%
+  |                                                                                 
+  |                                                                           |   1%
+  |                                                                                 
+  |=                                                                          |   1%
+  |                                                                                 
+  |=                                                                          |   2%
+  |                                                                                 
+  |==                                                                         |   2%
+  |                                                                                 
+  |==                                                                         |   3%
+  |                                                                                 
+  |===                                                                        |   3%
+  |                                                                                 
+  |===                                                                        |   4%
+  |                                                                                 
+  |===                                                                        |   5%
+  |                                                                                 
+  |====                                                                       |   5%
+  |                                                                                 
+  |====                                                                       |   6%
+  |                                                                                 
+  |=====                                                                      |   6%
+  |                                                                                 
+  |=====                                                                      |   7%
+  |                                                                                 
+  |======                                                                     |   7%
+  |                                                                                 
+  |======                                                                     |   8%
+  |                                                                                 
+  |======                                                                     |   9%
+  |                                                                                 
+  |=======                                                                    |   9%
+  |                                                                                 
+  |=======                                                                    |  10%
+  |                                                                                 
+  |========                                                                   |  10%
+  |                                                                                 
+  |========                                                                   |  11%
+  |                                                                                 
+  |=========                                                                  |  11%
+  |                                                                                 
+  |=========                                                                  |  12%
+  |                                                                                 
+  |=========                                                                  |  13%
+  |                                                                                 
+  |==========                                                                 |  13%
+  |                                                                                 
+  |==========                                                                 |  14%
+  |                                                                                 
+  |===========                                                                |  14%
+  |                                                                                 
+  |===========                                                                |  15%
+  |                                                                                 
+  |============                                                               |  15%
+  |                                                                                 
+  |============                                                               |  16%
+  |                                                                                 
+  |============                                                               |  17%
+  |                                                                                 
+  |=============                                                              |  17%
+  |                                                                                 
+  |=============                                                              |  18%
+  |                                                                                 
+  |==============                                                             |  18%
+  |                                                                                 
+  |==============                                                             |  19%
+  |                                                                                 
+  |===============                                                            |  19%
+  |                                                                                 
+  |===============                                                            |  20%
+  |                                                                                 
+  |===============                                                            |  21%
+  |                                                                                 
+  |================                                                           |  21%
+  |                                                                                 
+  |================                                                           |  22%
+  |                                                                                 
+  |=================                                                          |  22%
+  |                                                                                 
+  |=================                                                          |  23%
+  |                                                                                 
+  |==================                                                         |  23%
+  |                                                                                 
+  |==================                                                         |  24%
+  |                                                                                 
+  |==================                                                         |  25%
+  |                                                                                 
+  |===================                                                        |  25%
+  |                                                                                 
+  |===================                                                        |  26%
+  |                                                                                 
+  |====================                                                       |  26%
+  |                                                                                 
+  |====================                                                       |  27%
+  |                                                                                 
+  |=====================                                                      |  27%
+  |                                                                                 
+  |=====================                                                      |  28%
+  |                                                                                 
+  |=====================                                                      |  29%
+  |                                                                                 
+  |======================                                                     |  29%
+  |                                                                                 
+  |======================                                                     |  30%
+  |                                                                                 
+  |=======================                                                    |  30%
+  |                                                                                 
+  |=======================                                                    |  31%
+  |                                                                                 
+  |========================                                                   |  31%
+  |                                                                                 
+  |========================                                                   |  32%
+  |                                                                                 
+  |========================                                                   |  33%
+  |                                                                                 
+  |=========================                                                  |  33%
+  |                                                                                 
+  |=========================                                                  |  34%
+  |                                                                                 
+  |==========================                                                 |  34%
+  |                                                                                 
+  |==========================                                                 |  35%
+  |                                                                                 
+  |===========================                                                |  35%
+  |                                                                                 
+  |===========================                                                |  36%
+  |                                                                                 
+  |===========================                                                |  37%
+  |                                                                                 
+  |============================                                               |  37%
+  |                                                                                 
+  |============================                                               |  38%
+  |                                                                                 
+  |=============================                                              |  38%
+  |                                                                                 
+  |=============================                                              |  39%
+  |                                                                                 
+  |==============================                                             |  39%
+  |                                                                                 
+  |==============================                                             |  40%
+  |                                                                                 
+  |==============================                                             |  41%
+  |                                                                                 
+  |===============================                                            |  41%
+  |                                                                                 
+  |===============================                                            |  42%
+  |                                                                                 
+  |================================                                           |  42%
+  |                                                                                 
+  |================================                                           |  43%
+  |                                                                                 
+  |=================================                                          |  43%
+  |                                                                                 
+  |=================================                                          |  44%
+  |                                                                                 
+  |=================================                                          |  45%
+  |                                                                                 
+  |==================================                                         |  45%
+  |                                                                                 
+  |==================================                                         |  46%
+  |                                                                                 
+  |===================================                                        |  46%
+  |                                                                                 
+  |===================================                                        |  47%
+  |                                                                                 
+  |====================================                                       |  47%
+  |                                                                                 
+  |====================================                                       |  48%
+  |                                                                                 
+  |====================================                                       |  49%
+  |                                                                                 
+  |=====================================                                      |  49%
+  |                                                                                 
+  |=====================================                                      |  50%
+  |                                                                                 
+  |======================================                                     |  50%
+  |                                                                                 
+  |======================================                                     |  51%
+  |                                                                                 
+  |=======================================                                    |  51%
+  |                                                                                 
+  |=======================================                                    |  52%
+  |                                                                                 
+  |=======================================                                    |  53%
+  |                                                                                 
+  |========================================                                   |  53%
+  |                                                                                 
+  |========================================                                   |  54%
+  |                                                                                 
+  |=========================================                                  |  54%
+  |                                                                                 
+  |=========================================                                  |  55%
+  |                                                                                 
+  |==========================================                                 |  55%
+  |                                                                                 
+  |==========================================                                 |  56%
+  |                                                                                 
+  |==========================================                                 |  57%
+  |                                                                                 
+  |===========================================                                |  57%
+  |                                                                                 
+  |===========================================                                |  58%
+  |                                                                                 
+  |============================================                               |  58%
+  |                                                                                 
+  |============================================                               |  59%
+  |                                                                                 
+  |=============================================                              |  59%
+  |                                                                                 
+  |=============================================                              |  60%
+  |                                                                                 
+  |=============================================                              |  61%
+  |                                                                                 
+  |==============================================                             |  61%
+  |                                                                                 
+  |==============================================                             |  62%
+  |                                                                                 
+  |===============================================                            |  62%
+  |                                                                                 
+  |===============================================                            |  63%
+  |                                                                                 
+  |================================================                           |  63%
+  |                                                                                 
+  |================================================                           |  64%
+  |                                                                                 
+  |================================================                           |  65%
+  |                                                                                 
+  |=================================================                          |  65%
+  |                                                                                 
+  |=================================================                          |  66%
+  |                                                                                 
+  |==================================================                         |  66%
+  |                                                                                 
+  |==================================================                         |  67%
+  |                                                                                 
+  |===================================================                        |  67%
+  |                                                                                 
+  |===================================================                        |  68%
+  |                                                                                 
+  |===================================================                        |  69%
+  |                                                                                 
+  |====================================================                       |  69%
+  |                                                                                 
+  |====================================================                       |  70%
+  |                                                                                 
+  |=====================================================                      |  70%
+  |                                                                                 
+  |=====================================================                      |  71%
+  |                                                                                 
+  |======================================================                     |  71%
+  |                                                                                 
+  |======================================================                     |  72%
+  |                                                                                 
+  |======================================================                     |  73%
+  |                                                                                 
+  |=======================================================                    |  73%
+  |                                                                                 
+  |=======================================================                    |  74%
+  |                                                                                 
+  |========================================================                   |  74%
+  |                                                                                 
+  |========================================================                   |  75%
+  |                                                                                 
+  |=========================================================                  |  75%
+  |                                                                                 
+  |=========================================================                  |  76%
+  |                                                                                 
+  |=========================================================                  |  77%
+  |                                                                                 
+  |==========================================================                 |  77%
+  |                                                                                 
+  |==========================================================                 |  78%
+  |                                                                                 
+  |===========================================================                |  78%
+  |                                                                                 
+  |===========================================================                |  79%
+  |                                                                                 
+  |============================================================               |  79%
+  |                                                                                 
+  |============================================================               |  80%
+  |                                                                                 
+  |============================================================               |  81%
+  |                                                                                 
+  |=============================================================              |  81%
+  |                                                                                 
+  |=============================================================              |  82%
+  |                                                                                 
+  |==============================================================             |  82%
+  |                                                                                 
+  |==============================================================             |  83%
+  |                                                                                 
+  |===============================================================            |  83%
+  |                                                                                 
+  |===============================================================            |  84%
+  |                                                                                 
+  |===============================================================            |  85%
+  |                                                                                 
+  |================================================================           |  85%
+  |                                                                                 
+  |================================================================           |  86%
+  |                                                                                 
+  |=================================================================          |  86%
+  |                                                                                 
+  |=================================================================          |  87%
+  |                                                                                 
+  |==================================================================         |  87%
+  |                                                                                 
+  |==================================================================         |  88%
+  |                                                                                 
+  |==================================================================         |  89%
+  |                                                                                 
+  |===================================================================        |  89%
+  |                                                                                 
+  |===================================================================        |  90%
+  |                                                                                 
+  |====================================================================       |  90%
+  |                                                                                 
+  |====================================================================       |  91%
+  |                                                                                 
+  |=====================================================================      |  91%
+  |                                                                                 
+  |=====================================================================      |  92%
+  |                                                                                 
+  |=====================================================================      |  93%
+  |                                                                                 
+  |======================================================================     |  93%
+  |                                                                                 
+  |======================================================================     |  94%
+  |                                                                                 
+  |=======================================================================    |  94%
+  |                                                                                 
+  |=======================================================================    |  95%
+  |                                                                                 
+  |========================================================================   |  95%
+  |                                                                                 
+  |========================================================================   |  96%
+  |                                                                                 
+  |========================================================================   |  97%
+  |                                                                                 
+  |=========================================================================  |  97%
+  |                                                                                 
+  |=========================================================================  |  98%
+  |                                                                                 
+  |========================================================================== |  98%
+  |                                                                                 
+  |========================================================================== |  99%
+  |                                                                                 
+  |===========================================================================|  99%
+  |                                                                                 
+  |===========================================================================| 100%
+ + +
loading from cache
+require(“ensembldb”)
+ + +
ensg <- genes(ensdb)
@@ -5644,7 +2637,7 @@

tximport and make SCEs

purrr::map( ~ SingleCellExperiment(list(counts = .x$counts)))
- +
reading in alevin gene-level counts across cells with fishpond
 reading in alevin gene-level counts across cells with fishpond
 reading in alevin gene-level counts across cells with fishpond
@@ -5656,6 +2649,8 @@ 

tximport and make SCEs

reading in alevin gene-level counts across cells with fishpond reading in alevin gene-level counts across cells with fishpond reading in alevin gene-level counts across cells with fishpond +reading in alevin gene-level counts across cells with fishpond +reading in alevin gene-level counts across cells with fishpond reading in alevin gene-level counts across cells with fishpond
@@ -5720,7 +2715,7 @@

Plotting the QC stats

scale_y_log10() -

+

NA
@@ -5734,15 +2729,16 @@

Find features that are reliably detected

To start, will select features that are detected in > 5% of cells in at least one sample/index.

- +
detected_features <- sce_feature_qc %>%
   dplyr::filter(detected >= 5.0) %>%
   dplyr::pull(gene_id) %>%
   unique()
+# How many?
 length(detected_features)
- -
[1] 15202
+ +
[1] 15203
@@ -5754,8 +2750,8 @@

Find features that are reliably detected

length(detected_nc) - -
[1] 1689
+ +
[1] 1690
@@ -5785,10 +2781,10 @@

Find features that are reliably detected

nc_feature_comparison - +
@@ -5799,9 +2795,9 @@

Find features that are reliably detected

Lets make a vector of the noncoding cDNAs for future work:

- +
nc_cdna_genes <- sce_feature_qc %>%
-  dplyr::filter(quant_id == "834-cdna_k23_no_sa",
+  dplyr::filter(quant_id == "834-cdna_k31_no_sa",
                 ! gene_id %in% coding_genes) %>%
   dplyr::pull(gene_id)
@@ -5831,18 +2827,28 @@

Comparing coding and noncoding txomes

-

The noncoding cDNA genes seem to follow a very similar ditribution to the noncoding cDNA genes (mostly pseudogenes?), but I can’t see any particular reason to exclude them.

+

The noncoding cDNA genes seem to follow a very similar ditribution to the noncoding cDNA genes (mostly pseudogenes?), but I can’t see any particular reason to exclude them. If anything, there are ncRNA genes tend to have somewhat higher mean expression than the noncoding cDNAs which are in the cDNA dataset.

Just to check, lets look at the correlation of coding genes within a sample:

- -
cor(compare_expression, method = "spearman")
-
+ +
# pick a random set of cells to look at
+cell_sample <- sample(colnames(sces[["834-cdna_k31_no_sa"]]), 100)
+
+features <- rownames(sces[["834-cdna_k31_no_sa"]])
+coding_features <- features[features %in% coding_genes]
+
+compare_expression <- data.frame(
+  cdna = as.vector(counts(sces[["834-cdna_k31_no_sa"]][coding_features, cell_sample])),
+  txome = as.vector(counts(sces[["834-txome_k31_no_sa"]][coding_features, cell_sample]))
+)
+
+cor(compare_expression, method = "spearman")
- -
          cdna    txome
-cdna  1.000000 0.994648
-txome 0.994648 1.000000
+ +
           cdna     txome
+cdna  1.0000000 0.9945349
+txome 0.9945349 1.0000000
@@ -5850,20 +2856,23 @@

Comparing coding and noncoding txomes

qqplot(log1p(compare_expression$cdna), log1p(compare_expression$txome))
-

+

Correlation is nearly perfect.

- -
-

Conclusion

+
+

Transcriptome Conclusion

I think there is little cost, and a not insignificant potential gain to including noncoding RNA transcripts in the mapping sets for this project.

+
+
+
+

Comparing decoy sequences (TBD)

-
LS0tCnRpdGxlOiAiQWxldmluIEluZGV4IGNvbXBhcmlzb25zIgphdXRob3I6ICJKb3NodWEgU2hhcGlybyBmb3IgQ0NETCIKb3V0cHV0OiBodG1sX25vdGVib29rCi0tLQoKVGhpcyBub3RlYm9vayBjb250YWlucyBhbmFseXNpcyBvZiBzb21lIGludGlhbCBiZW5jaG1hcmsgaW4gcnVucyBvZiBBbGV2aW4gdXNpZ24gZGlmZmVyZW50IGluZGV4IGZpbGVzLCBsb29raW5nIGF0IG1hcHBpbmcgcmF0ZXMuCgojIyMgTG9hZCBMaWJyYXJpZXMKYGBge3Igc2V0dXB9CmxpYnJhcnkoZ2dwbG90MikKbGlicmFyeShtYWdyaXR0cikKbGlicmFyeShTaW5nbGVDZWxsRXhwZXJpbWVudCkKbGlicmFyeSh0eGltcG9ydCkKYGBgCgojIyMgRmlsZSBhbmQgZGlyZWN0b3J5IHNldHVwCmBgYHtyfQpkYXRhX2RpciA8LSBmaWxlLnBhdGgoImRhdGEiLCAiYWxldmluLXF1YW50IikKZGlyLmNyZWF0ZShkYXRhX2RpciwgcmVjdXJzaXZlID0gVFJVRSwgc2hvd1dhcm5pbmdzID0gRkFMU0UpCgpxdWFudF9zMyA8LSAiczM6Ly9uZXh0Zmxvdy1jY2RsLXJlc3VsdHMvc2NwY2EtYmVuY2htYXJrL2FsZXZpbi1xdWFudCIKCmBgYAoKCgoKIyMgU3luYyBTMyBmaWxlcwoKYGBge3J9CnN5bmNfY2FsbCA8LSBwYXN0ZSgiYXdzIHMzIHN5bmMiLCBxdWFudF9zMywgZGF0YV9kaXIpCnN5c3RlbShzeW5jX2NhbGwpCgpgYGAKCkdldCB0aGUgc2FtcGxlIGxpc3QgYW5kIG1ha2UgYSBkYXRhIGZyYW1lIHdpdGggc2FtcGxlIGluZm8KCmBgYHtyfQpxdWFudF9kaXJzIDwtIGxpc3QuZGlycyhkYXRhX2RpciwgZnVsbC5uYW1lcyA9IEZBTFNFLCByZWN1cnNpdmUgPSBGQUxTRSkKCiMgc3BsaXQgaWRzIGludG8gY29tcG9uZW50cyBmb3IgbGF0ZXIgcHJvY2Vzc2luZwpxdWFudF9pbmZvIDwtIGRhdGEuZnJhbWUgKHF1YW50X2RpciA9IHF1YW50X2RpcnMsIGluZm8gPSBxdWFudF9kaXJzKSAlPiUKICB0aWR5cjo6c2VwYXJhdGUoaW5mbywgc2VwID0gIlstXSIsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygic2FtcGxlIiwgImluZGV4X3R5cGUiKSkgJT4lCiAgdGlkeXI6OnNlcGFyYXRlKGluZGV4X3R5cGUsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygiaW5kZXhfY29udGVudCIsICJrbWVyIiwgInNhIiksIAogICAgICAgICAgICAgICAgICBleHRyYSA9ICJkcm9wIikgJT4lCiAgZHBseXI6Om11dGF0ZShrbWVyID0gc3RyaW5ncjo6c3RyX3JlbW92ZShrbWVyLCAiayIpKQogIApgYGAKCiMjIEdldCBBbm5vdGF0aW9ucyBmcm9tIEFubm90YXRpb25IdWIKCmBgYHtyfQpodWIgPSBBbm5vdGF0aW9uSHViOjpBbm5vdGF0aW9uSHViKGFzayA9IEZBTFNFKQojIEVuc2VtYmwgdjEwMCBIb21vIFNhcGllbnMgaXMgQUg3OTY4OQplbnNkYiA9IGh1YltbIkFINzk2ODkiXV0KZW5zZyA8LSBnZW5lcyhlbnNkYikKYGBgCgpDcmVhdGUgdmVjdG9ycyBvZiBtaXRvY2hvbmRpcmFsIGdlbmVzIGFuZCBjb2RpbmcgZ2VuZXMgZm9yIGxhdGVyLgoKYGBge3J9CiMgY3JlYXRlIHRoZSBtaXRvY2hvbmRyaWFsIGdlbmUgbGlzdAptaXRvX2dlbmVzIDwtIGVuc2dbc2VxbmFtZXMoZW5zZykgPT0gJ01UJ10kZ2VuZV9pZAoKY29kaW5nX2dlbmVzIDwtIGVuc2dbZW5zZyRnZW5lX2Jpb3R5cGUgPT0gInByb3RlaW5fY29kaW5nIl0kZ2VuZV9pZApgYGAKCgoKIyBQcm9jZXNzIEFsZXZpbiBxdWFudGlmaWNhdGlvbnMKCiMjIHR4aW1wb3J0IGFuZCBtYWtlIFNDRXMKCmBgYHtyfQpzY2VzIDwtIHF1YW50X2RpcnMgJT4lCiAgcHVycnI6Om1hcCgKICAgIH4gdHhpbXBvcnQoZmlsZS5wYXRoKGRhdGFfZGlyLCAueCwgImFsZXZpbiIsICJxdWFudHNfbWF0Lmd6IiksCiAgICAgICAgICAgICAgIHR5cGUgPSAiYWxldmluIikpICU+JQogIHB1cnJyOjptYXAoCiAgICB+IFNpbmdsZUNlbGxFeHBlcmltZW50KGxpc3QoY291bnRzID0gLngkY291bnRzKSkpIAoKIyBhZGQgbmFtZXMKbmFtZXMoc2NlcykgPC0gcXVhbnRfZGlycwpgYGAKCgpDYWxjdWxhdGUgY2VsbCBhbmQgZmVhdHVyZSBRQyBzdGF0aXN0aWNzIGZvciBlYWNoIHNhbXBsZS4KCmBgYHtyfQpzY2VzIDwtIHNjZXMgJT4lIAogIHB1cnJyOjptYXAoCiAgICB+IHNjYXRlcjo6YWRkUGVyQ2VsbFFDKAogICAgICAueCwKICAgICAgc3Vic2V0cyA9IGxpc3QobWl0byA9IG1pdG9fZ2VuZXNbbWl0b19nZW5lcyAlaW4lIHJvd25hbWVzKC54KV0sCiAgICAgICAgICAgICAgICAgICAgIG5jUk5BID0gcm93bmFtZXMoLngpWyFyb3duYW1lcygueCkgJWluJSBjb2RpbmdfZ2VuZXNdICkKICAgICkgCiAgKSAlPiUKICBwdXJycjo6bWFwKHNjYXRlcjo6YWRkUGVyRmVhdHVyZVFDKQpgYGAKCkNvbWJpbmUgYWxsIGNlbGwgUUMgc3RhdHMgaW50byBhIHNpbmdsZSBkYXRhIGZyYW1lCmBgYHtyfQpzY2VfY2VsbF9xYyA8LSBwdXJycjo6bWFwX2RmKHNjZXMsIAogICAgICAgICAgICAgICAgICAgICAgICB+IGFzLmRhdGEuZnJhbWUoY29sRGF0YSgueCkpICU+JQogICAgICAgICAgICAgICAgICAgICAgICAgIHRpYmJsZTo6cm93bmFtZXNfdG9fY29sdW1uKHZhciA9ICJjZWxsX2lkIiksIAogICAgICAgICAgICAgICAgICAgICAgICAuaWQgPSAicXVhbnRfaWQiKSAlPiUKICBkcGx5cjo6bGVmdF9qb2luKHF1YW50X2luZm8sIGJ5ID0gYygicXVhbnRfaWQiID0gInF1YW50X2RpciIpKQpgYGAKCgpDb21iaW5lIGFsbCBmZWF0dXJlIFFDIHN0YXRzIGludG8gYSBzaW5nbGUgZGF0YSBmcmFtZS4KYGBge3J9CnNjZV9mZWF0dXJlX3FjIDwtIHB1cnJyOjptYXBfZGYoc2NlcywgCiAgICAgICAgICAgICAgICAgICAgICAgIH4gYXMuZGF0YS5mcmFtZShyb3dEYXRhKC54KSkgJT4lCiAgICAgICAgICAgICAgICAgICAgICAgICAgdGliYmxlOjpyb3duYW1lc190b19jb2x1bW4odmFyID0gImdlbmVfaWQiKSwgCiAgICAgICAgICAgICAgICAgICAgICAgIC5pZCA9ICJxdWFudF9pZCIpICU+JQogIGRwbHlyOjpsZWZ0X2pvaW4ocXVhbnRfaW5mbywgYnkgPSBjKCJxdWFudF9pZCIgPSAicXVhbnRfZGlyIikpCmBgYAoKIyMgUGxvdHRpbmcgdGhlIFFDIHN0YXRzCgpQbG90IGNlbGwgUUMgZ2VuZSBhY2N1bXVsYXRpb24gY3VydmVzICYgbWl0byBmcmFjdGlvbgpgYGB7cn0KZ2dwbG90KHNjZV9jZWxsX3FjICU+JSBkcGx5cjo6ZmlsdGVyKGttZXIgPT0gIjMxIiksIAogICAgICAgYWVzKHggPSBzdW0sIHkgPSBkZXRlY3RlZCwgY29sb3IgPSBzdWJzZXRzX21pdG9fcGVyY2VudCkpICsKICBnZW9tX3BvaW50KCkgKwogIGZhY2V0X2dyaWQoc2FtcGxlIH4gcGFzdGUoaW5kZXhfY29udGVudCwgc2EpICkgKwogIHNjYWxlX2NvbG9yX3ZpcmlkaXNfYygpICsKICBzY2FsZV94X2xvZzEwKCkgKwogIHNjYWxlX3lfbG9nMTAoKQogIApgYGAKCiMgRmluZCBmZWF0dXJlcyB0aGF0IGFyZSByZWxpYWJseSBkZXRlY3RlZAoKVG8gc3RhcnQsIHdpbGwgc2VsZWN0IGZlYXR1cmVzIHRoYXQgYXJlIGRldGVjdGVkIGluID4gNSUgb2YgY2VsbHMgaW4gYXQgbGVhc3Qgb25lIHNhbXBsZS9pbmRleC4gCgpgYGB7cn0KZGV0ZWN0ZWRfZmVhdHVyZXMgPC0gc2NlX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihkZXRlY3RlZCA+PSA1LjApICU+JQogIGRwbHlyOjpwdWxsKGdlbmVfaWQpICU+JQogIHVuaXF1ZSgpCiMgSG93IG1hbnk/Cmxlbmd0aChkZXRlY3RlZF9mZWF0dXJlcykKYGBgCgpIb3cgbWFueSBvZiB0aGVzZSBhcmUgbm90IHByb3RlaW4gY29kaW5nPwoKYGBge3J9CmRldGVjdGVkX25jIDwtIGRldGVjdGVkX2ZlYXR1cmVzWyFkZXRlY3RlZF9mZWF0dXJlcyAlaW4lIGNvZGluZ19nZW5lc10KCmxlbmd0aChkZXRlY3RlZF9uYykKYGBgCgpMZXRzIGxvb2sgYXQgdGhlc2UgZmVhdHVyZXMgaW4gYSBiaXQgbW9yZSBkZXB0aCwgY29tcGFyaW5nIHRoZSBzYW1lIHNhbXBsZSB3aXRoIGZ1bGwgdHJhbnNjcmlwdG9tZSB2cyBjRE5BIG9ubHkuCmBgYHtyfQojIHNlbGVjdCBub25jb2RpbmcgZGV0ZWN0ZWQgZmVhdHVyZXMKbmNfZmVhdHVyZV9xYyA8LSBzY2VfZmVhdHVyZV9xYyAlPiUgCiAgZHBseXI6OmZpbHRlcihnZW5lX2lkICVpbiUgZGV0ZWN0ZWRfbmMpIAoKIyBHZXQgZGV0ZWN0ZWQgbmNSTkFzIGluIDgzNC10eG9tZV9rMzFfbm9fc2EgYXMgYSB0cmFuc2NyaXB0b21lIAoKbmNfdHhvbWUgPC0gIG5jX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihxdWFudF9pZCA9PSAiODM0LXR4b21lX2szMV9ub19zYSIpICU+JQogIGRwbHlyOjphcnJhbmdlKGRlc2MobWVhbikpCgpuY19jZG5hIDwtICBuY19mZWF0dXJlX3FjICU+JQogIGRwbHlyOjpmaWx0ZXIocXVhbnRfaWQgPT0gIjgzNC1jZG5hX2szMV9ub19zYSIpCgojIEpvaW4gdGhlIHRhYmxlcwpuY19mZWF0dXJlX2NvbXBhcmlzb24gPC0gbmNfdHhvbWUgJT4lCiAgZHBseXI6OmxlZnRfam9pbihuY19jZG5hLCAKICAgICAgICAgICAgICAgICAgIGJ5ID0gImdlbmVfaWQiLCAKICAgICAgICAgICAgICAgICAgIHN1ZmZpeCA9IGMoIl90eG9tZSIsICJfY2RuYSIpKSAlPiUKICBkcGx5cjo6c2VsZWN0KCJnZW5lX2lkIiwgIm1lYW5fdHhvbWUiLCAibWVhbl9jZG5hIiwgImRldGVjdGVkX3R4b21lIiwgImRldGVjdGVkX2NkbmEiKQoKbmNfZmVhdHVyZV9jb21wYXJpc29uCmBgYAoKQXMgZXhwZWN0ZWQsIG1vc3Qgb2YgdGhlIGZlYXR1cmVzIHRoYXQgYXJlIG5vdCBsaXN0ZWQgYXMgY29kaW5nIGRvIG5vdCBhcHBlYXIgaW4gdGhlIGNkbmEgb25seSBzZXQhClNvbWUgZG8sIGFuZCBzcG90IGNoZWNraW5nIGluZGljYXRlcyB0aGF0IHRob3NlIGFyZSBsaXN0ZWQgYXMgcHNldWRvZ2VuZXMsIHdoaWNoIGFyZSBmb3Igd2hhdGV2ZXIgcmVhc29uIHN0aWxsIGluY2x1ZGVkIGluIHRoZSBjRE5BIGZpbGUuCgpPZiB0aG9zZSB0aGF0IGRvIG5vdCwgdGhlIHRvcCBmZXcgZ2VuZXMgYXJlIE1BTEFUMSBhbmQgbWl0Y2hvbmRyaWFsIHJSTkFzLiAKTUFMQVQxIGlzIHBvdGVudGlhbGx5IGludGVyZXN0aW5nLCBhbmQgaXQgZG9lcyBzZWVtIHRoYXQgd2Ugc2hvdWxkIHByb2JhYmx5IGtlZXAgaXQhCgpMZXRzIG1ha2UgYSB2ZWN0b3Igb2YgdGhlIG5vbmNvZGluZyBjRE5BcyBmb3IgZnV0dXJlIHdvcms6CmBgYHtyfQpuY19jZG5hX2dlbmVzIDwtIHNjZV9mZWF0dXJlX3FjICU+JQogIGRwbHlyOjpmaWx0ZXIocXVhbnRfaWQgPT0gIjgzNC1jZG5hX2szMV9ub19zYSIsCiAgICAgICAgICAgICAgICAhIGdlbmVfaWQgJWluJSBjb2RpbmdfZ2VuZXMpICU+JQogIGRwbHlyOjpwdWxsKGdlbmVfaWQpCmBgYAoKCiMjIENvbXBhcmluZyBjb2RpbmcgYW5kIG5vbmNvZGluZyB0eG9tZXMKCkZpcnN0LCBsb29raW5nIGF0IHRoZSBtZWFuIGV4cHJlc3Npb24gb2YgZWFjaCBnZW5lLCBjb21wYXJpbmcgY29kaW5nIGFuZCBub25jb2Rpbmc6IGNvbXBhcmluZyB3aXRoaW4gc2FtcGxlcywgY29kaW5nIHRvIG5vbmNvZGluZy4KCmBgYHtyfQpzY2VfZmVhdHVyZV9maWx0ZXJlZCA8LSBzY2VfZmVhdHVyZV9xYyAlPiUgCiAgZHBseXI6OmZpbHRlcihrbWVyID09ICIzMSIsIHNhID09ICJubyIpICU+JQogIGRwbHlyOjptdXRhdGUoY2xhc3MgPSBkcGx5cjo6Y2FzZV93aGVuKGdlbmVfaWQgJWluJSBjb2RpbmdfZ2VuZXMgfiAiY29kaW5nIiwKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZW5lX2lkICVpbiUgbmNfY2RuYV9nZW5lcyB+ICJub25jb2RpbmcgY0ROQSIsCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFRSVUUgfiAibmNSTkEiKSkKCmdncGxvdChzY2VfZmVhdHVyZV9maWx0ZXJlZCwgCiAgICAgICBhZXMgKHggPSBtZWFuLCBjb2xvciA9IGNsYXNzKSkgKwogIGdlb21fZGVuc2l0eSgpICsgCiAgc2NhbGVfeF9sb2cxMCgpICsgCiAgc2NhbGVfY29sb3JfYnJld2VyKHBhbGV0dGUgPSAiRGFyazIiKSArCiAgZmFjZXRfZ3JpZChpbmRleF9jb250ZW50IH4gc2FtcGxlKQpgYGAKClRoZSBub25jb2RpbmcgY0ROQSBnZW5lcyBzZWVtIHRvIGZvbGxvdyBhIHZlcnkgc2ltaWxhciBkaXRyaWJ1dGlvbiB0byB0aGUgbm9uY29kaW5nIGNETkEgZ2VuZXMgKG1vc3RseSBwc2V1ZG9nZW5lcz8pLCBidXQgSSBjYW4ndCBzZWUgYW55IHBhcnRpY3VsYXIgcmVhc29uIHRvIGV4Y2x1ZGUgdGhlbS4KCkp1c3QgdG8gY2hlY2ssIGxldHMgbG9vayBhdCB0aGUgY29ycmVsYXRpb24gb2YgY29kaW5nIGdlbmVzIHdpdGhpbiBhIHNhbXBsZToKCgpgYGB7cn0KIyBwaWNrIGEgcmFuZG9tIHNldCBvZiBjZWxscyB0byBsb29rIGF0CmNlbGxfc2FtcGxlIDwtIHNhbXBsZShjb2xuYW1lcyhzY2VzW1siODM0LWNkbmFfazMxX25vX3NhIl1dKSwgMTAwKQoKZmVhdHVyZXMgPC0gcm93bmFtZXMoc2Nlc1tbIjgzNC1jZG5hX2szMV9ub19zYSJdXSkKY29kaW5nX2ZlYXR1cmVzIDwtIGZlYXR1cmVzW2ZlYXR1cmVzICVpbiUgY29kaW5nX2dlbmVzXQoKY29tcGFyZV9leHByZXNzaW9uIDwtIGRhdGEuZnJhbWUoCiAgY2RuYSA9IGFzLnZlY3Rvcihjb3VudHMoc2Nlc1tbIjgzNC1jZG5hX2szMV9ub19zYSJdXVtjb2RpbmdfZmVhdHVyZXMsIGNlbGxfc2FtcGxlXSkpLAogIHR4b21lID0gYXMudmVjdG9yKGNvdW50cyhzY2VzW1siODM0LXR4b21lX2szMV9ub19zYSJdXVtjb2RpbmdfZmVhdHVyZXMsIGNlbGxfc2FtcGxlXSkpCikKCmNvcihjb21wYXJlX2V4cHJlc3Npb24sIG1ldGhvZCA9ICJzcGVhcm1hbiIpCmBgYApgYGB7cn0KcXFwbG90KGxvZzFwKGNvbXBhcmVfZXhwcmVzc2lvbiRjZG5hKSwgbG9nMXAoY29tcGFyZV9leHByZXNzaW9uJHR4b21lKSkKYGBgCkNvcnJlbGF0aW9uIGlzIG5lYXJseSBwZXJmZWN0LgoKIyMgQ29uY2x1c2lvbgpJIHRoaW5rIHRoZXJlIGlzIGxpdHRsZSBjb3N0LCBhbmQgYSBub3QgaW5zaWduaWZpY2FudCBwb3RlbnRpYWwgZ2FpbiB0byBpbmNsdWRpbmcgbm9uY29kaW5nIFJOQSB0cmFuc2NyaXB0cyBpbiB0aGUgbWFwcGluZyBzZXRzIGZvciB0aGlzIHByb2plY3QuCgoK
+
LS0tCnRpdGxlOiAiQWxldmluIEluZGV4IGNvbXBhcmlzb25zIgphdXRob3I6ICJKb3NodWEgU2hhcGlybyBmb3IgQ0NETCIKb3V0cHV0OiBodG1sX25vdGVib29rCi0tLQoKVGhpcyBub3RlYm9vayBjb250YWlucyBhbmFseXNpcyBvZiBzb21lIGludGlhbCBiZW5jaG1hcmsgaW4gcnVucyBvZiBBbGV2aW4gdXNpZ24gZGlmZmVyZW50IGluZGV4IGZpbGVzLCBsb29raW5nIGF0IG1hcHBpbmcgcmF0ZXMuCgojIyMgTG9hZCBMaWJyYXJpZXMKYGBge3Igc2V0dXB9CmxpYnJhcnkoZ2dwbG90MikKbGlicmFyeShtYWdyaXR0cikKbGlicmFyeShTaW5nbGVDZWxsRXhwZXJpbWVudCkKbGlicmFyeSh0eGltcG9ydCkKYGBgCgojIyMgRmlsZSBhbmQgZGlyZWN0b3J5IHNldHVwCmBgYHtyfQpkYXRhX2RpciA8LSBmaWxlLnBhdGgoImRhdGEiLCAiYWxldmluLXF1YW50IikKZGlyLmNyZWF0ZShkYXRhX2RpciwgcmVjdXJzaXZlID0gVFJVRSwgc2hvd1dhcm5pbmdzID0gRkFMU0UpCgpxdWFudF9zMyA8LSAiczM6Ly9uZXh0Zmxvdy1jY2RsLXJlc3VsdHMvc2NwY2EtYmVuY2htYXJrL2FsZXZpbi1xdWFudCIKCmBgYAoKCgoKIyMgU3luYyBTMyBmaWxlcwoKYGBge3J9CnN5bmNfY2FsbCA8LSBwYXN0ZSgiYXdzIHMzIHN5bmMiLCBxdWFudF9zMywgZGF0YV9kaXIpCnN5c3RlbShzeW5jX2NhbGwsIGlnbm9yZS5zdGRvdXQgPSBUUlVFKQpgYGAKCkdldCB0aGUgc2FtcGxlIGxpc3QgYW5kIG1ha2UgYSBkYXRhIGZyYW1lIHdpdGggc2FtcGxlIGluZm8KCmBgYHtyfQpxdWFudF9kaXJzIDwtIGxpc3QuZGlycyhkYXRhX2RpciwgZnVsbC5uYW1lcyA9IEZBTFNFLCByZWN1cnNpdmUgPSBGQUxTRSkKCiMgc3BsaXQgaWRzIGludG8gY29tcG9uZW50cyBmb3IgbGF0ZXIgcHJvY2Vzc2luZwpxdWFudF9pbmZvIDwtIGRhdGEuZnJhbWUgKHF1YW50X2RpciA9IHF1YW50X2RpcnMsIGluZm8gPSBxdWFudF9kaXJzKSAlPiUKICB0aWR5cjo6c2VwYXJhdGUoaW5mbywgc2VwID0gIlstXSIsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygic2FtcGxlIiwgImluZGV4X3R5cGUiKSkgJT4lCiAgdGlkeXI6OnNlcGFyYXRlKGluZGV4X3R5cGUsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygiaW5kZXhfY29udGVudCIsICJrbWVyIiwgInNhIiksIAogICAgICAgICAgICAgICAgICBleHRyYSA9ICJkcm9wIikgJT4lCiAgZHBseXI6Om11dGF0ZShrbWVyID0gc3RyaW5ncjo6c3RyX3JlbW92ZShrbWVyLCAiayIpKQogIApgYGAKCiMjIEdldCBBbm5vdGF0aW9ucyBmcm9tIEFubm90YXRpb25IdWIKCmBgYHtyfQpodWIgPSBBbm5vdGF0aW9uSHViOjpBbm5vdGF0aW9uSHViKGFzayA9IEZBTFNFKQojIEVuc2VtYmwgdjEwMCBIb21vIFNhcGllbnMgaXMgQUg3OTY4OQplbnNkYiA9IGh1YltbIkFINzk2ODkiXV0KZW5zZyA8LSBnZW5lcyhlbnNkYikKYGBgCgpDcmVhdGUgdmVjdG9ycyBvZiBtaXRvY2hvbmRpcmFsIGdlbmVzIGFuZCBjb2RpbmcgZ2VuZXMgZm9yIGxhdGVyLgoKYGBge3J9CiMgY3JlYXRlIHRoZSBtaXRvY2hvbmRyaWFsIGdlbmUgbGlzdAptaXRvX2dlbmVzIDwtIGVuc2dbc2VxbmFtZXMoZW5zZykgPT0gJ01UJ10kZ2VuZV9pZAoKY29kaW5nX2dlbmVzIDwtIGVuc2dbZW5zZyRnZW5lX2Jpb3R5cGUgPT0gInByb3RlaW5fY29kaW5nIl0kZ2VuZV9pZApgYGAKCgoKIyBQcm9jZXNzIEFsZXZpbiBxdWFudGlmaWNhdGlvbnMKCiMjIHR4aW1wb3J0IGFuZCBtYWtlIFNDRXMKCmBgYHtyfQpzY2VzIDwtIHF1YW50X2RpcnMgJT4lCiAgcHVycnI6Om1hcCgKICAgIH4gdHhpbXBvcnQoZmlsZS5wYXRoKGRhdGFfZGlyLCAueCwgImFsZXZpbiIsICJxdWFudHNfbWF0Lmd6IiksCiAgICAgICAgICAgICAgIHR5cGUgPSAiYWxldmluIikpICU+JQogIHB1cnJyOjptYXAoCiAgICB+IFNpbmdsZUNlbGxFeHBlcmltZW50KGxpc3QoY291bnRzID0gLngkY291bnRzKSkpIAoKIyBhZGQgbmFtZXMKbmFtZXMoc2NlcykgPC0gcXVhbnRfZGlycwpgYGAKCgpDYWxjdWxhdGUgY2VsbCBhbmQgZmVhdHVyZSBRQyBzdGF0aXN0aWNzIGZvciBlYWNoIHNhbXBsZS4KCmBgYHtyfQpzY2VzIDwtIHNjZXMgJT4lIAogIHB1cnJyOjptYXAoCiAgICB+IHNjYXRlcjo6YWRkUGVyQ2VsbFFDKAogICAgICAueCwKICAgICAgc3Vic2V0cyA9IGxpc3QobWl0byA9IG1pdG9fZ2VuZXNbbWl0b19nZW5lcyAlaW4lIHJvd25hbWVzKC54KV0sCiAgICAgICAgICAgICAgICAgICAgIG5jUk5BID0gcm93bmFtZXMoLngpWyFyb3duYW1lcygueCkgJWluJSBjb2RpbmdfZ2VuZXNdICkKICAgICkgCiAgKSAlPiUKICBwdXJycjo6bWFwKHNjYXRlcjo6YWRkUGVyRmVhdHVyZVFDKQpgYGAKCkNvbWJpbmUgYWxsIGNlbGwgUUMgc3RhdHMgaW50byBhIHNpbmdsZSBkYXRhIGZyYW1lCmBgYHtyfQpzY2VfY2VsbF9xYyA8LSBwdXJycjo6bWFwX2RmKHNjZXMsIAogICAgICAgICAgICAgICAgICAgICAgICB+IGFzLmRhdGEuZnJhbWUoY29sRGF0YSgueCkpICU+JQogICAgICAgICAgICAgICAgICAgICAgICAgIHRpYmJsZTo6cm93bmFtZXNfdG9fY29sdW1uKHZhciA9ICJjZWxsX2lkIiksIAogICAgICAgICAgICAgICAgICAgICAgICAuaWQgPSAicXVhbnRfaWQiKSAlPiUKICBkcGx5cjo6bGVmdF9qb2luKHF1YW50X2luZm8sIGJ5ID0gYygicXVhbnRfaWQiID0gInF1YW50X2RpciIpKQpgYGAKCgpDb21iaW5lIGFsbCBmZWF0dXJlIFFDIHN0YXRzIGludG8gYSBzaW5nbGUgZGF0YSBmcmFtZS4KYGBge3J9CnNjZV9mZWF0dXJlX3FjIDwtIHB1cnJyOjptYXBfZGYoc2NlcywgCiAgICAgICAgICAgICAgICAgICAgICAgIH4gYXMuZGF0YS5mcmFtZShyb3dEYXRhKC54KSkgJT4lCiAgICAgICAgICAgICAgICAgICAgICAgICAgdGliYmxlOjpyb3duYW1lc190b19jb2x1bW4odmFyID0gImdlbmVfaWQiKSwgCiAgICAgICAgICAgICAgICAgICAgICAgIC5pZCA9ICJxdWFudF9pZCIpICU+JQogIGRwbHlyOjpsZWZ0X2pvaW4ocXVhbnRfaW5mbywgYnkgPSBjKCJxdWFudF9pZCIgPSAicXVhbnRfZGlyIikpCmBgYAoKIyMgUGxvdHRpbmcgdGhlIFFDIHN0YXRzCgpQbG90IGNlbGwgUUMgZ2VuZSBhY2N1bXVsYXRpb24gY3VydmVzICYgbWl0byBmcmFjdGlvbgpgYGB7cn0KZ2dwbG90KHNjZV9jZWxsX3FjICU+JSBkcGx5cjo6ZmlsdGVyKGttZXIgPT0gIjMxIiksIAogICAgICAgYWVzKHggPSBzdW0sIHkgPSBkZXRlY3RlZCwgY29sb3IgPSBzdWJzZXRzX21pdG9fcGVyY2VudCkpICsKICBnZW9tX3BvaW50KCkgKwogIGZhY2V0X2dyaWQoc2FtcGxlIH4gcGFzdGUoaW5kZXhfY29udGVudCwgc2EpICkgKwogIHNjYWxlX2NvbG9yX3ZpcmlkaXNfYygpICsKICBzY2FsZV94X2xvZzEwKCkgKwogIHNjYWxlX3lfbG9nMTAoKQogIApgYGAKCiMgRmluZCBmZWF0dXJlcyB0aGF0IGFyZSByZWxpYWJseSBkZXRlY3RlZAoKVG8gc3RhcnQsIHdpbGwgc2VsZWN0IGZlYXR1cmVzIHRoYXQgYXJlIGRldGVjdGVkIGluID4gNSUgb2YgY2VsbHMgaW4gYXQgbGVhc3Qgb25lIHNhbXBsZS9pbmRleC4gCgpgYGB7cn0KZGV0ZWN0ZWRfZmVhdHVyZXMgPC0gc2NlX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihkZXRlY3RlZCA+PSA1LjApICU+JQogIGRwbHlyOjpwdWxsKGdlbmVfaWQpICU+JQogIHVuaXF1ZSgpCiMgSG93IG1hbnk/Cmxlbmd0aChkZXRlY3RlZF9mZWF0dXJlcykKYGBgCgpIb3cgbWFueSBvZiB0aGVzZSBhcmUgbm90IHByb3RlaW4gY29kaW5nPwoKYGBge3J9CmRldGVjdGVkX25jIDwtIGRldGVjdGVkX2ZlYXR1cmVzWyFkZXRlY3RlZF9mZWF0dXJlcyAlaW4lIGNvZGluZ19nZW5lc10KCmxlbmd0aChkZXRlY3RlZF9uYykKYGBgCgpMZXRzIGxvb2sgYXQgdGhlc2UgZmVhdHVyZXMgaW4gYSBiaXQgbW9yZSBkZXB0aCwgY29tcGFyaW5nIHRoZSBzYW1lIHNhbXBsZSB3aXRoIGZ1bGwgdHJhbnNjcmlwdG9tZSB2cyBjRE5BIG9ubHkuCmBgYHtyfQojIHNlbGVjdCBub25jb2RpbmcgZGV0ZWN0ZWQgZmVhdHVyZXMKbmNfZmVhdHVyZV9xYyA8LSBzY2VfZmVhdHVyZV9xYyAlPiUgCiAgZHBseXI6OmZpbHRlcihnZW5lX2lkICVpbiUgZGV0ZWN0ZWRfbmMpIAoKIyBHZXQgZGV0ZWN0ZWQgbmNSTkFzIGluIDgzNC10eG9tZV9rMzFfbm9fc2EgYXMgYSB0cmFuc2NyaXB0b21lIAoKbmNfdHhvbWUgPC0gIG5jX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihxdWFudF9pZCA9PSAiODM0LXR4b21lX2szMV9ub19zYSIpICU+JQogIGRwbHlyOjphcnJhbmdlKGRlc2MobWVhbikpCgpuY19jZG5hIDwtICBuY19mZWF0dXJlX3FjICU+JQogIGRwbHlyOjpmaWx0ZXIocXVhbnRfaWQgPT0gIjgzNC1jZG5hX2szMV9ub19zYSIpCgojIEpvaW4gdGhlIHRhYmxlcwpuY19mZWF0dXJlX2NvbXBhcmlzb24gPC0gbmNfdHhvbWUgJT4lCiAgZHBseXI6OmxlZnRfam9pbihuY19jZG5hLCAKICAgICAgICAgICAgICAgICAgIGJ5ID0gImdlbmVfaWQiLCAKICAgICAgICAgICAgICAgICAgIHN1ZmZpeCA9IGMoIl90eG9tZSIsICJfY2RuYSIpKSAlPiUKICBkcGx5cjo6c2VsZWN0KCJnZW5lX2lkIiwgIm1lYW5fdHhvbWUiLCAibWVhbl9jZG5hIiwgImRldGVjdGVkX3R4b21lIiwgImRldGVjdGVkX2NkbmEiKQoKbmNfZmVhdHVyZV9jb21wYXJpc29uCmBgYAoKQXMgZXhwZWN0ZWQsIG1vc3Qgb2YgdGhlIGZlYXR1cmVzIHRoYXQgYXJlIG5vdCBsaXN0ZWQgYXMgY29kaW5nIGRvIG5vdCBhcHBlYXIgaW4gdGhlIGNkbmEgb25seSBzZXQhClNvbWUgZG8sIGFuZCBzcG90IGNoZWNraW5nIGluZGljYXRlcyB0aGF0IHRob3NlIGFyZSBsaXN0ZWQgYXMgcHNldWRvZ2VuZXMsIHdoaWNoIGFyZSBmb3Igd2hhdGV2ZXIgcmVhc29uIHN0aWxsIGluY2x1ZGVkIGluIHRoZSBjRE5BIGZpbGUuCgpPZiB0aG9zZSB0aGF0IGRvIG5vdCwgdGhlIHRvcCBmZXcgZ2VuZXMgYXJlIE1BTEFUMSBhbmQgbWl0Y2hvbmRyaWFsIHJSTkFzLiAKTUFMQVQxIGlzIHBvdGVudGlhbGx5IGludGVyZXN0aW5nLCBhbmQgaXQgZG9lcyBzZWVtIHRoYXQgd2Ugc2hvdWxkIHByb2JhYmx5IGtlZXAgaXQhCgpMZXRzIG1ha2UgYSB2ZWN0b3Igb2YgdGhlIG5vbmNvZGluZyBjRE5BcyBmb3IgZnV0dXJlIHdvcms6CmBgYHtyfQpuY19jZG5hX2dlbmVzIDwtIHNjZV9mZWF0dXJlX3FjICU+JQogIGRwbHlyOjpmaWx0ZXIocXVhbnRfaWQgPT0gIjgzNC1jZG5hX2szMV9ub19zYSIsCiAgICAgICAgICAgICAgICAhIGdlbmVfaWQgJWluJSBjb2RpbmdfZ2VuZXMpICU+JQogIGRwbHlyOjpwdWxsKGdlbmVfaWQpCmBgYAoKCiMjIENvbXBhcmluZyBjb2RpbmcgYW5kIG5vbmNvZGluZyB0eG9tZXMKCkZpcnN0LCBsb29raW5nIGF0IHRoZSBtZWFuIGV4cHJlc3Npb24gb2YgZWFjaCBnZW5lLCBjb21wYXJpbmcgY29kaW5nIGFuZCBub25jb2Rpbmc6IGNvbXBhcmluZyB3aXRoaW4gc2FtcGxlcywgY29kaW5nIHRvIG5vbmNvZGluZy4KCmBgYHtyfQpzY2VfZmVhdHVyZV9maWx0ZXJlZCA8LSBzY2VfZmVhdHVyZV9xYyAlPiUgCiAgZHBseXI6OmZpbHRlcihrbWVyID09ICIzMSIsIHNhID09ICJubyIpICU+JQogIGRwbHlyOjptdXRhdGUoY2xhc3MgPSBkcGx5cjo6Y2FzZV93aGVuKGdlbmVfaWQgJWluJSBjb2RpbmdfZ2VuZXMgfiAiY29kaW5nIiwKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZW5lX2lkICVpbiUgbmNfY2RuYV9nZW5lcyB+ICJub25jb2RpbmcgY0ROQSIsCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFRSVUUgfiAibmNSTkEiKSkKCmdncGxvdChzY2VfZmVhdHVyZV9maWx0ZXJlZCwgCiAgICAgICBhZXMgKHggPSBtZWFuLCBjb2xvciA9IGNsYXNzKSkgKwogIGdlb21fZGVuc2l0eSgpICsgCiAgc2NhbGVfeF9sb2cxMCgpICsgCiAgc2NhbGVfY29sb3JfYnJld2VyKHBhbGV0dGUgPSAiRGFyazIiKSArCiAgZmFjZXRfZ3JpZChpbmRleF9jb250ZW50IH4gc2FtcGxlKQpgYGAKClRoZSBub25jb2RpbmcgY0ROQSBnZW5lcyBzZWVtIHRvIGZvbGxvdyBhIHZlcnkgc2ltaWxhciBkaXRyaWJ1dGlvbiB0byB0aGUgbm9uY29kaW5nIGNETkEgZ2VuZXMgKG1vc3RseSBwc2V1ZG9nZW5lcz8pLCBidXQgSSBjYW4ndCBzZWUgYW55IHBhcnRpY3VsYXIgcmVhc29uIHRvIGV4Y2x1ZGUgdGhlbS4gCklmIGFueXRoaW5nLCB0aGVyZSBhcmUgbmNSTkEgZ2VuZXMgdGVuZCB0byBoYXZlIHNvbWV3aGF0IGhpZ2hlciBtZWFuIGV4cHJlc3Npb24gdGhhbiB0aGUgbm9uY29kaW5nIGNETkFzIHdoaWNoIGFyZSBpbiB0aGUgY0ROQSBkYXRhc2V0LgoKSnVzdCB0byBjaGVjaywgbGV0cyBsb29rIGF0IHRoZSBjb3JyZWxhdGlvbiBvZiBjb2RpbmcgZ2VuZXMgd2l0aGluIGEgc2FtcGxlOgoKCmBgYHtyfQojIHBpY2sgYSByYW5kb20gc2V0IG9mIGNlbGxzIHRvIGxvb2sgYXQKY2VsbF9zYW1wbGUgPC0gc2FtcGxlKGNvbG5hbWVzKHNjZXNbWyI4MzQtY2RuYV9rMzFfbm9fc2EiXV0pLCAxMDApCgpmZWF0dXJlcyA8LSByb3duYW1lcyhzY2VzW1siODM0LWNkbmFfazMxX25vX3NhIl1dKQpjb2RpbmdfZmVhdHVyZXMgPC0gZmVhdHVyZXNbZmVhdHVyZXMgJWluJSBjb2RpbmdfZ2VuZXNdCgpjb21wYXJlX2V4cHJlc3Npb24gPC0gZGF0YS5mcmFtZSgKICBjZG5hID0gYXMudmVjdG9yKGNvdW50cyhzY2VzW1siODM0LWNkbmFfazMxX25vX3NhIl1dW2NvZGluZ19mZWF0dXJlcywgY2VsbF9zYW1wbGVdKSksCiAgdHhvbWUgPSBhcy52ZWN0b3IoY291bnRzKHNjZXNbWyI4MzQtdHhvbWVfazMxX25vX3NhIl1dW2NvZGluZ19mZWF0dXJlcywgY2VsbF9zYW1wbGVdKSkKKQoKY29yKGNvbXBhcmVfZXhwcmVzc2lvbiwgbWV0aG9kID0gInNwZWFybWFuIikKYGBgCmBgYHtyfQpxcXBsb3QobG9nMXAoY29tcGFyZV9leHByZXNzaW9uJGNkbmEpLCBsb2cxcChjb21wYXJlX2V4cHJlc3Npb24kdHhvbWUpKQpgYGAKQ29ycmVsYXRpb24gaXMgbmVhcmx5IHBlcmZlY3QuCgojIyMgVHJhbnNjcmlwdG9tZSBDb25jbHVzaW9uCgpJIHRoaW5rIHRoZXJlIGlzIGxpdHRsZSBjb3N0LCBhbmQgYSBub3QgaW5zaWduaWZpY2FudCBwb3RlbnRpYWwgZ2FpbiB0byBpbmNsdWRpbmcgbm9uY29kaW5nIFJOQSB0cmFuc2NyaXB0cyBpbiB0aGUgbWFwcGluZyBzZXRzIGZvciB0aGlzIHByb2plY3QuCgojIyBDb21wYXJpbmcgZGVjb3kgc2VxdWVuY2VzIChUQkQpCgoKCgo=
From bfbe53afbdc030b3b60b49bbe14d45788e120068 Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Thu, 10 Sep 2020 14:35:31 -0400 Subject: [PATCH 09/15] Add decoy comparison --- workflows/benchmarks/benchmark-analysis.Rmd | 96 +- .../benchmarks/benchmark-analysis.nb.html | 959 +++--------------- 2 files changed, 234 insertions(+), 821 deletions(-) diff --git a/workflows/benchmarks/benchmark-analysis.Rmd b/workflows/benchmarks/benchmark-analysis.Rmd index e7d1beb..f428922 100644 --- a/workflows/benchmarks/benchmark-analysis.Rmd +++ b/workflows/benchmarks/benchmark-analysis.Rmd @@ -12,8 +12,13 @@ library(ggplot2) library(magrittr) library(SingleCellExperiment) library(tximport) + +# set seed +set.seed(2020) ``` + + ### File and directory setup ```{r} data_dir <- file.path("data", "alevin-quant") @@ -23,9 +28,6 @@ quant_s3 <- "s3://nextflow-ccdl-results/scpca-benchmark/alevin-quant" ``` - - - ## Sync S3 files ```{r} @@ -43,7 +45,7 @@ quant_info <- data.frame (quant_dir = quant_dirs, info = quant_dirs) %>% tidyr::separate(info, sep = "[-]", into = c("sample", "index_type")) %>% tidyr::separate(index_type, - into = c("index_content", "kmer", "sa"), + into = c("index_content", "kmer", "decoy"), extra = "drop") %>% dplyr::mutate(kmer = stringr::str_remove(kmer, "k")) @@ -126,7 +128,7 @@ Plot cell QC gene accumulation curves & mito fraction ggplot(sce_cell_qc %>% dplyr::filter(kmer == "31"), aes(x = sum, y = detected, color = subsets_mito_percent)) + geom_point() + - facet_grid(sample ~ paste(index_content, sa) ) + + facet_grid(sample ~ paste(index_content, decoy) ) + scale_color_viridis_c() + scale_x_log10() + scale_y_log10() @@ -200,10 +202,10 @@ First, looking at the mean expression of each gene, comparing coding and noncodi ```{r} sce_feature_filtered <- sce_feature_qc %>% - dplyr::filter(kmer == "31", sa == "no") %>% + dplyr::filter(kmer == "31", decoy == "no") %>% dplyr::mutate(class = dplyr::case_when(gene_id %in% coding_genes ~ "coding", gene_id %in% nc_cdna_genes ~ "noncoding cDNA", - TRUE ~ "ncRNA")) + TRUE ~ "ncRNA")) ggplot(sce_feature_filtered, aes (x = mean, color = class)) + @@ -221,22 +223,24 @@ Just to check, lets look at the correlation of coding genes within a sample: ```{r} # pick a random set of cells to look at -cell_sample <- sample(colnames(sces[["834-cdna_k31_no_sa"]]), 100) +cell_sample <- sample(colnames(sces[["905_3-cdna_k31_no_sa"]]), 100) -features <- rownames(sces[["834-cdna_k31_no_sa"]]) +features <- rownames(sces[["905_3-cdna_k31_no_sa"]]) coding_features <- features[features %in% coding_genes] compare_expression <- data.frame( - cdna = as.vector(counts(sces[["834-cdna_k31_no_sa"]][coding_features, cell_sample])), - txome = as.vector(counts(sces[["834-txome_k31_no_sa"]][coding_features, cell_sample])) + cdna = as.vector(counts(sces[["905_3-cdna_k31_no_sa"]][coding_features, cell_sample])), + txome = as.vector(counts(sces[["905_3-txome_k31_no_sa"]][coding_features, cell_sample])) ) cor(compare_expression, method = "spearman") ``` ```{r} -qqplot(log1p(compare_expression$cdna), log1p(compare_expression$txome)) +ggplot(compare_expression, aes(x = log1p(cdna), y = log1p(txome))) + + geom_point() ``` -Correlation is nearly perfect. +Correlation is very good for genes present in both, with expression more often lower in the transcriptome set, which may make sense in the case of multimapping introduced by the larger number of potential targets. +Interesting though that there are some genes which do not appear to be expressed in the cDNA set that have expression in the txome. ### Transcriptome Conclusion @@ -244,6 +248,72 @@ I think there is little cost, and a not insignificant potential gain to includin ## Comparing decoy sequences (TBD) +Get cDNA-only decoy comparison data. +```{r} +sce_feature_filtered <- sce_feature_qc %>% + dplyr::filter(kmer == "31", index_content == "cdna") +``` + +```{r} +decoy_means <- sce_feature_filtered %>% + tidyr::pivot_wider(id_cols = c(gene_id, sample), + names_from = decoy, + values_from = mean) +``` + +First off, how well correlated are the means for various decoy choices? +We expect very good correlations. + +```{r} +cor(decoy_means[,3:5], method = "spearman", use = "complete.obs") +``` + + + +And we have them... interestingly, the best correlation is between no decoys and the partial decoy: the full decoy index is more different by this measure. +This leads me to the preliminary conclusion that the partial index (which notably uses a slightly different set of transcipts at this stage, due to not being built locally) may not be worth pursuing, as it seems to make very little difference. +Don't forget to look at your data! +```{r} +pairs(decoy_means[,3:5]) +``` +Whoa... seems like a lot is being driven by a few points that are very different in the full index data. +What are those genes? + + +```{r} +decoy_means %>% + dplyr::mutate(diff = (no - full)/(full + 1)) %>% + dplyr::arrange(desc(diff)) +``` +ENSG00000269028, which is by far the most different, is the gene *MT-RNR2 like 12* which, aside from being related to at least 12 other genes, does not ring any particular bells. +However, ENSG00000255823 is *MT-RNR2-like 8* + +Other genes at the top of the differential list: +ENSG00000163864: NMNAT3 nicotinamide nucleotide adenylyltransferase 3 +ENSG00000197563: PIGN Phosphatidylinositol Glycan Anchor Biosynthesis Class N +ENSG00000173559: NABP1 Nucleic Acid Binding Protein 1 + +I don't really know what to do with this list... it seems like few genes will have large differences, but a few differences are enormous! + + +Just as a sanity check, lets repeat one of the analyses we did before, comparing the cDNA to the transcriptome for the full decoy index (since we now have both): + +```{r} +# using the same `cell_sample` and `coding_features` as previously + +compare_expression_full <- data.frame( + cdna = as.vector(counts(sces[["905_3-cdna_k31_full_sa"]][coding_features, cell_sample])), + txome = as.vector(counts(sces[["905_3-txome_k31_full_sa"]][coding_features, cell_sample])) +) + +cor(compare_expression_full, method = "spearman") +``` +```{r} +ggplot(compare_expression_full, aes(log1p(cdna), y = log1p(txome))) + + geom_point() +``` +Interestingly, the correlation between cDNA and txome expression values (for coding genes) using the full decoy seems substantially better than with the no decoy sequences! +This seems to me to be a good argument for using the full decoy, if it is less sensitive to the chosen transcript list. diff --git a/workflows/benchmarks/benchmark-analysis.nb.html b/workflows/benchmarks/benchmark-analysis.nb.html index f0b986a..8ececda 100644 --- a/workflows/benchmarks/benchmark-analysis.nb.html +++ b/workflows/benchmarks/benchmark-analysis.nb.html @@ -1756,78 +1756,51 @@

Joshua Shapiro for CCDL

Load Libraries

- + +
Quitting from lines 11-18 (benchmark-analysis.Rmd) 
+ +
library(ggplot2)
-library(magrittr)
-library(SingleCellExperiment)
+library(magrittr) - -
Loading required package: SummarizedExperiment
-Loading required package: GenomicRanges
-Loading required package: stats4
-Loading required package: BiocGenerics
-Loading required package: parallel
-
-Attaching package: ‘BiocGenerics’
-
-The following objects are masked from ‘package:parallel’:
-
-    clusterApply, clusterApplyLB, clusterCall, clusterEvalQ, clusterExport,
-    clusterMap, parApply, parCapply, parLapply, parLapplyLB, parRapply,
-    parSapply, parSapplyLB
-
-The following objects are masked from ‘package:stats’:
-
-    IQR, mad, sd, var, xtabs
-
-The following objects are masked from ‘package:base’:
-
-    anyDuplicated, append, as.data.frame, basename, cbind, colnames,
-    dirname, do.call, duplicated, eval, evalq, Filter, Find, get, grep,
-    grepl, intersect, is.unsorted, lapply, Map, mapply, match, mget, order,
-    paste, pmax, pmax.int, pmin, pmin.int, Position, rank, rbind, Reduce,
-    rownames, sapply, setdiff, sort, table, tapply, union, unique, unsplit,
-    which, which.max, which.min
-
-Loading required package: S4Vectors
-
-Attaching package: ‘S4Vectors’
-
-The following object is masked from ‘package:base’:
-
-    expand.grid
-
-Loading required package: IRanges
-Loading required package: GenomeInfoDb
-Loading required package: Biobase
-Welcome to Bioconductor
+
+

+Attaching package: 'magrittr'
 
-    Vignettes contain introductory material; view with 'browseVignettes()'.
-    To cite Bioconductor, see 'citation("Biobase")', and for packages
-    'citation("pkgname")'.
+The following object is masked from 'package:AnnotationFilter':
 
+    not
+ + +
library(SingleCellExperiment)
+ + +
Loading required package: SummarizedExperiment
 Loading required package: DelayedArray
 Loading required package: matrixStats
 
-Attaching package: ‘matrixStats’
+Attaching package: 'matrixStats'
 
-The following objects are masked from ‘package:Biobase’:
+The following objects are masked from 'package:Biobase':
 
     anyMissing, rowMedians
 
 
-Attaching package: ‘DelayedArray’
+Attaching package: 'DelayedArray'
 
-The following objects are masked from ‘package:matrixStats’:
+The following objects are masked from 'package:matrixStats':
 
     colMaxs, colMins, colRanges, rowMaxs, rowMins, rowRanges
 
-The following objects are masked from ‘package:base’:
+The following objects are masked from 'package:base':
 
     aperm, apply, rowsum
- -
library(tximport)
+ +
library(tximport)
+
+# set seed
+set.seed(2020)
@@ -1850,17 +1823,16 @@

File and directory setup

Sync S3 files

- +
sync_call <- paste("aws s3 sync", quant_s3, data_dir)
-system(sync_call, ignore.stdout = TRUE)
-
+system(sync_call, ignore.stdout = TRUE)

Get the sample list and make a data frame with sample info

- +
quant_dirs <- list.dirs(data_dir, full.names = FALSE, recursive = FALSE)
 
 # split ids into components for later processing
@@ -1868,7 +1840,7 @@ 

Sync S3 files

tidyr::separate(info, sep = "[-]", into = c("sample", "index_type")) %>% tidyr::separate(index_type, - into = c("index_content", "kmer", "sa"), + into = c("index_content", "kmer", "decoy"), extra = "drop") %>% dplyr::mutate(kmer = stringr::str_remove(kmer, "k"))
@@ -1883,732 +1855,6 @@

Get Annotations from AnnotationHub

hub = AnnotationHub::AnnotationHub(ask = FALSE)
- -

-  |                                                                                 
-  |                                                                           |   0%
-  |                                                                                 
-  |                                                                           |   1%
-  |                                                                                 
-  |=                                                                          |   1%
-  |                                                                                 
-  |=                                                                          |   2%
-  |                                                                                 
-  |==                                                                         |   2%
-  |                                                                                 
-  |==                                                                         |   3%
-  |                                                                                 
-  |===                                                                        |   3%
-  |                                                                                 
-  |===                                                                        |   4%
-  |                                                                                 
-  |===                                                                        |   5%
-  |                                                                                 
-  |====                                                                       |   5%
-  |                                                                                 
-  |====                                                                       |   6%
-  |                                                                                 
-  |=====                                                                      |   6%
-  |                                                                                 
-  |=====                                                                      |   7%
-  |                                                                                 
-  |======                                                                     |   7%
-  |                                                                                 
-  |======                                                                     |   8%
-  |                                                                                 
-  |======                                                                     |   9%
-  |                                                                                 
-  |=======                                                                    |   9%
-  |                                                                                 
-  |=======                                                                    |  10%
-  |                                                                                 
-  |========                                                                   |  10%
-  |                                                                                 
-  |========                                                                   |  11%
-  |                                                                                 
-  |=========                                                                  |  11%
-  |                                                                                 
-  |=========                                                                  |  12%
-  |                                                                                 
-  |=========                                                                  |  13%
-  |                                                                                 
-  |==========                                                                 |  13%
-  |                                                                                 
-  |==========                                                                 |  14%
-  |                                                                                 
-  |===========                                                                |  14%
-  |                                                                                 
-  |===========                                                                |  15%
-  |                                                                                 
-  |============                                                               |  15%
-  |                                                                                 
-  |============                                                               |  16%
-  |                                                                                 
-  |============                                                               |  17%
-  |                                                                                 
-  |=============                                                              |  17%
-  |                                                                                 
-  |=============                                                              |  18%
-  |                                                                                 
-  |==============                                                             |  18%
-  |                                                                                 
-  |==============                                                             |  19%
-  |                                                                                 
-  |===============                                                            |  19%
-  |                                                                                 
-  |===============                                                            |  20%
-  |                                                                                 
-  |===============                                                            |  21%
-  |                                                                                 
-  |================                                                           |  21%
-  |                                                                                 
-  |================                                                           |  22%
-  |                                                                                 
-  |=================                                                          |  22%
-  |                                                                                 
-  |=================                                                          |  23%
-  |                                                                                 
-  |==================                                                         |  23%
-  |                                                                                 
-  |==================                                                         |  24%
-  |                                                                                 
-  |==================                                                         |  25%
-  |                                                                                 
-  |===================                                                        |  25%
-  |                                                                                 
-  |===================                                                        |  26%
-  |                                                                                 
-  |====================                                                       |  26%
-  |                                                                                 
-  |====================                                                       |  27%
-  |                                                                                 
-  |=====================                                                      |  27%
-  |                                                                                 
-  |=====================                                                      |  28%
-  |                                                                                 
-  |=====================                                                      |  29%
-  |                                                                                 
-  |======================                                                     |  29%
-  |                                                                                 
-  |======================                                                     |  30%
-  |                                                                                 
-  |=======================                                                    |  30%
-  |                                                                                 
-  |=======================                                                    |  31%
-  |                                                                                 
-  |========================                                                   |  31%
-  |                                                                                 
-  |========================                                                   |  32%
-  |                                                                                 
-  |========================                                                   |  33%
-  |                                                                                 
-  |=========================                                                  |  33%
-  |                                                                                 
-  |=========================                                                  |  34%
-  |                                                                                 
-  |==========================                                                 |  34%
-  |                                                                                 
-  |==========================                                                 |  35%
-  |                                                                                 
-  |===========================                                                |  35%
-  |                                                                                 
-  |===========================                                                |  36%
-  |                                                                                 
-  |===========================                                                |  37%
-  |                                                                                 
-  |============================                                               |  37%
-  |                                                                                 
-  |============================                                               |  38%
-  |                                                                                 
-  |=============================                                              |  38%
-  |                                                                                 
-  |=============================                                              |  39%
-  |                                                                                 
-  |==============================                                             |  39%
-  |                                                                                 
-  |==============================                                             |  40%
-  |                                                                                 
-  |==============================                                             |  41%
-  |                                                                                 
-  |===============================                                            |  41%
-  |                                                                                 
-  |===============================                                            |  42%
-  |                                                                                 
-  |================================                                           |  42%
-  |                                                                                 
-  |================================                                           |  43%
-  |                                                                                 
-  |=================================                                          |  43%
-  |                                                                                 
-  |=================================                                          |  44%
-  |                                                                                 
-  |=================================                                          |  45%
-  |                                                                                 
-  |==================================                                         |  45%
-  |                                                                                 
-  |==================================                                         |  46%
-  |                                                                                 
-  |===================================                                        |  46%
-  |                                                                                 
-  |===================================                                        |  47%
-  |                                                                                 
-  |====================================                                       |  47%
-  |                                                                                 
-  |====================================                                       |  48%
-  |                                                                                 
-  |====================================                                       |  49%
-  |                                                                                 
-  |=====================================                                      |  49%
-  |                                                                                 
-  |=====================================                                      |  50%
-  |                                                                                 
-  |======================================                                     |  50%
-  |                                                                                 
-  |======================================                                     |  51%
-  |                                                                                 
-  |=======================================                                    |  51%
-  |                                                                                 
-  |=======================================                                    |  52%
-  |                                                                                 
-  |=======================================                                    |  53%
-  |                                                                                 
-  |========================================                                   |  53%
-  |                                                                                 
-  |========================================                                   |  54%
-  |                                                                                 
-  |=========================================                                  |  54%
-  |                                                                                 
-  |=========================================                                  |  55%
-  |                                                                                 
-  |==========================================                                 |  55%
-  |                                                                                 
-  |==========================================                                 |  56%
-  |                                                                                 
-  |==========================================                                 |  57%
-  |                                                                                 
-  |===========================================                                |  57%
-  |                                                                                 
-  |===========================================                                |  58%
-  |                                                                                 
-  |============================================                               |  58%
-  |                                                                                 
-  |============================================                               |  59%
-  |                                                                                 
-  |=============================================                              |  59%
-  |                                                                                 
-  |=============================================                              |  60%
-  |                                                                                 
-  |=============================================                              |  61%
-  |                                                                                 
-  |==============================================                             |  61%
-  |                                                                                 
-  |==============================================                             |  62%
-  |                                                                                 
-  |===============================================                            |  62%
-  |                                                                                 
-  |===============================================                            |  63%
-  |                                                                                 
-  |================================================                           |  63%
-  |                                                                                 
-  |================================================                           |  64%
-  |                                                                                 
-  |================================================                           |  65%
-  |                                                                                 
-  |=================================================                          |  65%
-  |                                                                                 
-  |=================================================                          |  66%
-  |                                                                                 
-  |==================================================                         |  66%
-  |                                                                                 
-  |==================================================                         |  67%
-  |                                                                                 
-  |===================================================                        |  67%
-  |                                                                                 
-  |===================================================                        |  68%
-  |                                                                                 
-  |===================================================                        |  69%
-  |                                                                                 
-  |====================================================                       |  69%
-  |                                                                                 
-  |====================================================                       |  70%
-  |                                                                                 
-  |=====================================================                      |  70%
-  |                                                                                 
-  |=====================================================                      |  71%
-  |                                                                                 
-  |======================================================                     |  71%
-  |                                                                                 
-  |======================================================                     |  72%
-  |                                                                                 
-  |======================================================                     |  73%
-  |                                                                                 
-  |=======================================================                    |  73%
-  |                                                                                 
-  |=======================================================                    |  74%
-  |                                                                                 
-  |========================================================                   |  74%
-  |                                                                                 
-  |========================================================                   |  75%
-  |                                                                                 
-  |=========================================================                  |  75%
-  |                                                                                 
-  |=========================================================                  |  76%
-  |                                                                                 
-  |=========================================================                  |  77%
-  |                                                                                 
-  |==========================================================                 |  77%
-  |                                                                                 
-  |==========================================================                 |  78%
-  |                                                                                 
-  |===========================================================                |  78%
-  |                                                                                 
-  |===========================================================                |  79%
-  |                                                                                 
-  |============================================================               |  79%
-  |                                                                                 
-  |============================================================               |  80%
-  |                                                                                 
-  |============================================================               |  81%
-  |                                                                                 
-  |=============================================================              |  81%
-  |                                                                                 
-  |=============================================================              |  82%
-  |                                                                                 
-  |==============================================================             |  82%
-  |                                                                                 
-  |==============================================================             |  83%
-  |                                                                                 
-  |===============================================================            |  83%
-  |                                                                                 
-  |===============================================================            |  84%
-  |                                                                                 
-  |===============================================================            |  85%
-  |                                                                                 
-  |================================================================           |  85%
-  |                                                                                 
-  |================================================================           |  86%
-  |                                                                                 
-  |=================================================================          |  86%
-  |                                                                                 
-  |=================================================================          |  87%
-  |                                                                                 
-  |==================================================================         |  87%
-  |                                                                                 
-  |==================================================================         |  88%
-  |                                                                                 
-  |==================================================================         |  89%
-  |                                                                                 
-  |===================================================================        |  89%
-  |                                                                                 
-  |===================================================================        |  90%
-  |                                                                                 
-  |====================================================================       |  90%
-  |                                                                                 
-  |====================================================================       |  91%
-  |                                                                                 
-  |=====================================================================      |  91%
-  |                                                                                 
-  |=====================================================================      |  92%
-  |                                                                                 
-  |=====================================================================      |  93%
-  |                                                                                 
-  |======================================================================     |  93%
-  |                                                                                 
-  |======================================================================     |  94%
-  |                                                                                 
-  |=======================================================================    |  94%
-  |                                                                                 
-  |=======================================================================    |  95%
-  |                                                                                 
-  |========================================================================   |  95%
-  |                                                                                 
-  |========================================================================   |  96%
-  |                                                                                 
-  |========================================================================   |  97%
-  |                                                                                 
-  |=========================================================================  |  97%
-  |                                                                                 
-  |=========================================================================  |  98%
-  |                                                                                 
-  |========================================================================== |  98%
-  |                                                                                 
-  |========================================================================== |  99%
-  |                                                                                 
-  |===========================================================================|  99%
-  |                                                                                 
-  |===========================================================================| 100%
- - -
snapshotDate(): 2020-04-27
- - -
# Ensembl v100 Homo Sapiens is AH79689
-ensdb = hub[["AH79689"]]
- - -
downloading 1 resources
-retrieving 1 resource
-
-  |                                                                                 
-  |                                                                           |   0%
-  |                                                                                 
-  |                                                                           |   1%
-  |                                                                                 
-  |=                                                                          |   1%
-  |                                                                                 
-  |=                                                                          |   2%
-  |                                                                                 
-  |==                                                                         |   2%
-  |                                                                                 
-  |==                                                                         |   3%
-  |                                                                                 
-  |===                                                                        |   3%
-  |                                                                                 
-  |===                                                                        |   4%
-  |                                                                                 
-  |===                                                                        |   5%
-  |                                                                                 
-  |====                                                                       |   5%
-  |                                                                                 
-  |====                                                                       |   6%
-  |                                                                                 
-  |=====                                                                      |   6%
-  |                                                                                 
-  |=====                                                                      |   7%
-  |                                                                                 
-  |======                                                                     |   7%
-  |                                                                                 
-  |======                                                                     |   8%
-  |                                                                                 
-  |======                                                                     |   9%
-  |                                                                                 
-  |=======                                                                    |   9%
-  |                                                                                 
-  |=======                                                                    |  10%
-  |                                                                                 
-  |========                                                                   |  10%
-  |                                                                                 
-  |========                                                                   |  11%
-  |                                                                                 
-  |=========                                                                  |  11%
-  |                                                                                 
-  |=========                                                                  |  12%
-  |                                                                                 
-  |=========                                                                  |  13%
-  |                                                                                 
-  |==========                                                                 |  13%
-  |                                                                                 
-  |==========                                                                 |  14%
-  |                                                                                 
-  |===========                                                                |  14%
-  |                                                                                 
-  |===========                                                                |  15%
-  |                                                                                 
-  |============                                                               |  15%
-  |                                                                                 
-  |============                                                               |  16%
-  |                                                                                 
-  |============                                                               |  17%
-  |                                                                                 
-  |=============                                                              |  17%
-  |                                                                                 
-  |=============                                                              |  18%
-  |                                                                                 
-  |==============                                                             |  18%
-  |                                                                                 
-  |==============                                                             |  19%
-  |                                                                                 
-  |===============                                                            |  19%
-  |                                                                                 
-  |===============                                                            |  20%
-  |                                                                                 
-  |===============                                                            |  21%
-  |                                                                                 
-  |================                                                           |  21%
-  |                                                                                 
-  |================                                                           |  22%
-  |                                                                                 
-  |=================                                                          |  22%
-  |                                                                                 
-  |=================                                                          |  23%
-  |                                                                                 
-  |==================                                                         |  23%
-  |                                                                                 
-  |==================                                                         |  24%
-  |                                                                                 
-  |==================                                                         |  25%
-  |                                                                                 
-  |===================                                                        |  25%
-  |                                                                                 
-  |===================                                                        |  26%
-  |                                                                                 
-  |====================                                                       |  26%
-  |                                                                                 
-  |====================                                                       |  27%
-  |                                                                                 
-  |=====================                                                      |  27%
-  |                                                                                 
-  |=====================                                                      |  28%
-  |                                                                                 
-  |=====================                                                      |  29%
-  |                                                                                 
-  |======================                                                     |  29%
-  |                                                                                 
-  |======================                                                     |  30%
-  |                                                                                 
-  |=======================                                                    |  30%
-  |                                                                                 
-  |=======================                                                    |  31%
-  |                                                                                 
-  |========================                                                   |  31%
-  |                                                                                 
-  |========================                                                   |  32%
-  |                                                                                 
-  |========================                                                   |  33%
-  |                                                                                 
-  |=========================                                                  |  33%
-  |                                                                                 
-  |=========================                                                  |  34%
-  |                                                                                 
-  |==========================                                                 |  34%
-  |                                                                                 
-  |==========================                                                 |  35%
-  |                                                                                 
-  |===========================                                                |  35%
-  |                                                                                 
-  |===========================                                                |  36%
-  |                                                                                 
-  |===========================                                                |  37%
-  |                                                                                 
-  |============================                                               |  37%
-  |                                                                                 
-  |============================                                               |  38%
-  |                                                                                 
-  |=============================                                              |  38%
-  |                                                                                 
-  |=============================                                              |  39%
-  |                                                                                 
-  |==============================                                             |  39%
-  |                                                                                 
-  |==============================                                             |  40%
-  |                                                                                 
-  |==============================                                             |  41%
-  |                                                                                 
-  |===============================                                            |  41%
-  |                                                                                 
-  |===============================                                            |  42%
-  |                                                                                 
-  |================================                                           |  42%
-  |                                                                                 
-  |================================                                           |  43%
-  |                                                                                 
-  |=================================                                          |  43%
-  |                                                                                 
-  |=================================                                          |  44%
-  |                                                                                 
-  |=================================                                          |  45%
-  |                                                                                 
-  |==================================                                         |  45%
-  |                                                                                 
-  |==================================                                         |  46%
-  |                                                                                 
-  |===================================                                        |  46%
-  |                                                                                 
-  |===================================                                        |  47%
-  |                                                                                 
-  |====================================                                       |  47%
-  |                                                                                 
-  |====================================                                       |  48%
-  |                                                                                 
-  |====================================                                       |  49%
-  |                                                                                 
-  |=====================================                                      |  49%
-  |                                                                                 
-  |=====================================                                      |  50%
-  |                                                                                 
-  |======================================                                     |  50%
-  |                                                                                 
-  |======================================                                     |  51%
-  |                                                                                 
-  |=======================================                                    |  51%
-  |                                                                                 
-  |=======================================                                    |  52%
-  |                                                                                 
-  |=======================================                                    |  53%
-  |                                                                                 
-  |========================================                                   |  53%
-  |                                                                                 
-  |========================================                                   |  54%
-  |                                                                                 
-  |=========================================                                  |  54%
-  |                                                                                 
-  |=========================================                                  |  55%
-  |                                                                                 
-  |==========================================                                 |  55%
-  |                                                                                 
-  |==========================================                                 |  56%
-  |                                                                                 
-  |==========================================                                 |  57%
-  |                                                                                 
-  |===========================================                                |  57%
-  |                                                                                 
-  |===========================================                                |  58%
-  |                                                                                 
-  |============================================                               |  58%
-  |                                                                                 
-  |============================================                               |  59%
-  |                                                                                 
-  |=============================================                              |  59%
-  |                                                                                 
-  |=============================================                              |  60%
-  |                                                                                 
-  |=============================================                              |  61%
-  |                                                                                 
-  |==============================================                             |  61%
-  |                                                                                 
-  |==============================================                             |  62%
-  |                                                                                 
-  |===============================================                            |  62%
-  |                                                                                 
-  |===============================================                            |  63%
-  |                                                                                 
-  |================================================                           |  63%
-  |                                                                                 
-  |================================================                           |  64%
-  |                                                                                 
-  |================================================                           |  65%
-  |                                                                                 
-  |=================================================                          |  65%
-  |                                                                                 
-  |=================================================                          |  66%
-  |                                                                                 
-  |==================================================                         |  66%
-  |                                                                                 
-  |==================================================                         |  67%
-  |                                                                                 
-  |===================================================                        |  67%
-  |                                                                                 
-  |===================================================                        |  68%
-  |                                                                                 
-  |===================================================                        |  69%
-  |                                                                                 
-  |====================================================                       |  69%
-  |                                                                                 
-  |====================================================                       |  70%
-  |                                                                                 
-  |=====================================================                      |  70%
-  |                                                                                 
-  |=====================================================                      |  71%
-  |                                                                                 
-  |======================================================                     |  71%
-  |                                                                                 
-  |======================================================                     |  72%
-  |                                                                                 
-  |======================================================                     |  73%
-  |                                                                                 
-  |=======================================================                    |  73%
-  |                                                                                 
-  |=======================================================                    |  74%
-  |                                                                                 
-  |========================================================                   |  74%
-  |                                                                                 
-  |========================================================                   |  75%
-  |                                                                                 
-  |=========================================================                  |  75%
-  |                                                                                 
-  |=========================================================                  |  76%
-  |                                                                                 
-  |=========================================================                  |  77%
-  |                                                                                 
-  |==========================================================                 |  77%
-  |                                                                                 
-  |==========================================================                 |  78%
-  |                                                                                 
-  |===========================================================                |  78%
-  |                                                                                 
-  |===========================================================                |  79%
-  |                                                                                 
-  |============================================================               |  79%
-  |                                                                                 
-  |============================================================               |  80%
-  |                                                                                 
-  |============================================================               |  81%
-  |                                                                                 
-  |=============================================================              |  81%
-  |                                                                                 
-  |=============================================================              |  82%
-  |                                                                                 
-  |==============================================================             |  82%
-  |                                                                                 
-  |==============================================================             |  83%
-  |                                                                                 
-  |===============================================================            |  83%
-  |                                                                                 
-  |===============================================================            |  84%
-  |                                                                                 
-  |===============================================================            |  85%
-  |                                                                                 
-  |================================================================           |  85%
-  |                                                                                 
-  |================================================================           |  86%
-  |                                                                                 
-  |=================================================================          |  86%
-  |                                                                                 
-  |=================================================================          |  87%
-  |                                                                                 
-  |==================================================================         |  87%
-  |                                                                                 
-  |==================================================================         |  88%
-  |                                                                                 
-  |==================================================================         |  89%
-  |                                                                                 
-  |===================================================================        |  89%
-  |                                                                                 
-  |===================================================================        |  90%
-  |                                                                                 
-  |====================================================================       |  90%
-  |                                                                                 
-  |====================================================================       |  91%
-  |                                                                                 
-  |=====================================================================      |  91%
-  |                                                                                 
-  |=====================================================================      |  92%
-  |                                                                                 
-  |=====================================================================      |  93%
-  |                                                                                 
-  |======================================================================     |  93%
-  |                                                                                 
-  |======================================================================     |  94%
-  |                                                                                 
-  |=======================================================================    |  94%
-  |                                                                                 
-  |=======================================================================    |  95%
-  |                                                                                 
-  |========================================================================   |  95%
-  |                                                                                 
-  |========================================================================   |  96%
-  |                                                                                 
-  |========================================================================   |  97%
-  |                                                                                 
-  |=========================================================================  |  97%
-  |                                                                                 
-  |=========================================================================  |  98%
-  |                                                                                 
-  |========================================================================== |  98%
-  |                                                                                 
-  |========================================================================== |  99%
-  |                                                                                 
-  |===========================================================================|  99%
-  |                                                                                 
-  |===========================================================================| 100%
- - -
loading from cache
-require(“ensembldb”)
- - -
ensg <- genes(ensdb)
-

Create vectors of mitochondiral genes and coding genes for later.

@@ -2705,17 +1951,17 @@

Plotting the QC stats

Plot cell QC gene accumulation curves & mito fraction

- +
ggplot(sce_cell_qc %>% dplyr::filter(kmer == "31"), 
        aes(x = sum, y = detected, color = subsets_mito_percent)) +
   geom_point() +
-  facet_grid(sample ~ paste(index_content, sa) ) +
+  facet_grid(sample ~ paste(index_content, decoy) ) +
   scale_color_viridis_c() +
   scale_x_log10() +
   scale_y_log10()
- -

+ +

NA
@@ -2781,7 +2027,7 @@

Find features that are reliably detected

nc_feature_comparison - +
+
+ + + +

ENSG00000269028, which is by far the most different, is the gene MT-RNR2 like 12 which, aside from being related to at least 12 other genes, does not ring any particular bells. However, ENSG00000255823 is MT-RNR2-like 8

+

Other genes at the top of the differential list: ENSG00000163864: NMNAT3 nicotinamide nucleotide adenylyltransferase 3 ENSG00000197563: PIGN Phosphatidylinositol Glycan Anchor Biosynthesis Class N ENSG00000173559: NABP1 Nucleic Acid Binding Protein 1

+

I don’t really know what to do with this list… it seems like few genes will have large differences, but a few differences are enormous!

+

Just as a sanity check, lets repeat one of the analyses we did before, comparing the cDNA to the transcriptome for the full decoy index (since we now have both):

+ + + +
# using the same `cell_sample` and `coding_features` as previously
+
+compare_expression_full <- data.frame(
+  cdna = as.vector(counts(sces[["905_3-cdna_k31_full_sa"]][coding_features, cell_sample])),
+  txome = as.vector(counts(sces[["905_3-txome_k31_full_sa"]][coding_features, cell_sample]))
+)
+
+cor(compare_expression_full, method = "spearman")
+ + +
           cdna     txome
+cdna  1.0000000 0.9993992
+txome 0.9993992 1.0000000
+ + + + +
ggplot(compare_expression_full, aes(log1p(cdna), y = log1p(txome))) +
+  geom_point()
+ + +

+ + + +

Interestingly, the correlation between cDNA and txome expression values (for coding genes) using the full decoy seems substantially better than with the no decoy sequences!

+

This seems to me to be a good argument for using the full decoy, if it is less sensitive to the chosen transcript list.

-
LS0tCnRpdGxlOiAiQWxldmluIEluZGV4IGNvbXBhcmlzb25zIgphdXRob3I6ICJKb3NodWEgU2hhcGlybyBmb3IgQ0NETCIKb3V0cHV0OiBodG1sX25vdGVib29rCi0tLQoKVGhpcyBub3RlYm9vayBjb250YWlucyBhbmFseXNpcyBvZiBzb21lIGludGlhbCBiZW5jaG1hcmsgaW4gcnVucyBvZiBBbGV2aW4gdXNpZ24gZGlmZmVyZW50IGluZGV4IGZpbGVzLCBsb29raW5nIGF0IG1hcHBpbmcgcmF0ZXMuCgojIyMgTG9hZCBMaWJyYXJpZXMKYGBge3Igc2V0dXB9CmxpYnJhcnkoZ2dwbG90MikKbGlicmFyeShtYWdyaXR0cikKbGlicmFyeShTaW5nbGVDZWxsRXhwZXJpbWVudCkKbGlicmFyeSh0eGltcG9ydCkKYGBgCgojIyMgRmlsZSBhbmQgZGlyZWN0b3J5IHNldHVwCmBgYHtyfQpkYXRhX2RpciA8LSBmaWxlLnBhdGgoImRhdGEiLCAiYWxldmluLXF1YW50IikKZGlyLmNyZWF0ZShkYXRhX2RpciwgcmVjdXJzaXZlID0gVFJVRSwgc2hvd1dhcm5pbmdzID0gRkFMU0UpCgpxdWFudF9zMyA8LSAiczM6Ly9uZXh0Zmxvdy1jY2RsLXJlc3VsdHMvc2NwY2EtYmVuY2htYXJrL2FsZXZpbi1xdWFudCIKCmBgYAoKCgoKIyMgU3luYyBTMyBmaWxlcwoKYGBge3J9CnN5bmNfY2FsbCA8LSBwYXN0ZSgiYXdzIHMzIHN5bmMiLCBxdWFudF9zMywgZGF0YV9kaXIpCnN5c3RlbShzeW5jX2NhbGwsIGlnbm9yZS5zdGRvdXQgPSBUUlVFKQpgYGAKCkdldCB0aGUgc2FtcGxlIGxpc3QgYW5kIG1ha2UgYSBkYXRhIGZyYW1lIHdpdGggc2FtcGxlIGluZm8KCmBgYHtyfQpxdWFudF9kaXJzIDwtIGxpc3QuZGlycyhkYXRhX2RpciwgZnVsbC5uYW1lcyA9IEZBTFNFLCByZWN1cnNpdmUgPSBGQUxTRSkKCiMgc3BsaXQgaWRzIGludG8gY29tcG9uZW50cyBmb3IgbGF0ZXIgcHJvY2Vzc2luZwpxdWFudF9pbmZvIDwtIGRhdGEuZnJhbWUgKHF1YW50X2RpciA9IHF1YW50X2RpcnMsIGluZm8gPSBxdWFudF9kaXJzKSAlPiUKICB0aWR5cjo6c2VwYXJhdGUoaW5mbywgc2VwID0gIlstXSIsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygic2FtcGxlIiwgImluZGV4X3R5cGUiKSkgJT4lCiAgdGlkeXI6OnNlcGFyYXRlKGluZGV4X3R5cGUsIAogICAgICAgICAgICAgICAgICBpbnRvID0gYygiaW5kZXhfY29udGVudCIsICJrbWVyIiwgInNhIiksIAogICAgICAgICAgICAgICAgICBleHRyYSA9ICJkcm9wIikgJT4lCiAgZHBseXI6Om11dGF0ZShrbWVyID0gc3RyaW5ncjo6c3RyX3JlbW92ZShrbWVyLCAiayIpKQogIApgYGAKCiMjIEdldCBBbm5vdGF0aW9ucyBmcm9tIEFubm90YXRpb25IdWIKCmBgYHtyfQpodWIgPSBBbm5vdGF0aW9uSHViOjpBbm5vdGF0aW9uSHViKGFzayA9IEZBTFNFKQojIEVuc2VtYmwgdjEwMCBIb21vIFNhcGllbnMgaXMgQUg3OTY4OQplbnNkYiA9IGh1YltbIkFINzk2ODkiXV0KZW5zZyA8LSBnZW5lcyhlbnNkYikKYGBgCgpDcmVhdGUgdmVjdG9ycyBvZiBtaXRvY2hvbmRpcmFsIGdlbmVzIGFuZCBjb2RpbmcgZ2VuZXMgZm9yIGxhdGVyLgoKYGBge3J9CiMgY3JlYXRlIHRoZSBtaXRvY2hvbmRyaWFsIGdlbmUgbGlzdAptaXRvX2dlbmVzIDwtIGVuc2dbc2VxbmFtZXMoZW5zZykgPT0gJ01UJ10kZ2VuZV9pZAoKY29kaW5nX2dlbmVzIDwtIGVuc2dbZW5zZyRnZW5lX2Jpb3R5cGUgPT0gInByb3RlaW5fY29kaW5nIl0kZ2VuZV9pZApgYGAKCgoKIyBQcm9jZXNzIEFsZXZpbiBxdWFudGlmaWNhdGlvbnMKCiMjIHR4aW1wb3J0IGFuZCBtYWtlIFNDRXMKCmBgYHtyfQpzY2VzIDwtIHF1YW50X2RpcnMgJT4lCiAgcHVycnI6Om1hcCgKICAgIH4gdHhpbXBvcnQoZmlsZS5wYXRoKGRhdGFfZGlyLCAueCwgImFsZXZpbiIsICJxdWFudHNfbWF0Lmd6IiksCiAgICAgICAgICAgICAgIHR5cGUgPSAiYWxldmluIikpICU+JQogIHB1cnJyOjptYXAoCiAgICB+IFNpbmdsZUNlbGxFeHBlcmltZW50KGxpc3QoY291bnRzID0gLngkY291bnRzKSkpIAoKIyBhZGQgbmFtZXMKbmFtZXMoc2NlcykgPC0gcXVhbnRfZGlycwpgYGAKCgpDYWxjdWxhdGUgY2VsbCBhbmQgZmVhdHVyZSBRQyBzdGF0aXN0aWNzIGZvciBlYWNoIHNhbXBsZS4KCmBgYHtyfQpzY2VzIDwtIHNjZXMgJT4lIAogIHB1cnJyOjptYXAoCiAgICB+IHNjYXRlcjo6YWRkUGVyQ2VsbFFDKAogICAgICAueCwKICAgICAgc3Vic2V0cyA9IGxpc3QobWl0byA9IG1pdG9fZ2VuZXNbbWl0b19nZW5lcyAlaW4lIHJvd25hbWVzKC54KV0sCiAgICAgICAgICAgICAgICAgICAgIG5jUk5BID0gcm93bmFtZXMoLngpWyFyb3duYW1lcygueCkgJWluJSBjb2RpbmdfZ2VuZXNdICkKICAgICkgCiAgKSAlPiUKICBwdXJycjo6bWFwKHNjYXRlcjo6YWRkUGVyRmVhdHVyZVFDKQpgYGAKCkNvbWJpbmUgYWxsIGNlbGwgUUMgc3RhdHMgaW50byBhIHNpbmdsZSBkYXRhIGZyYW1lCmBgYHtyfQpzY2VfY2VsbF9xYyA8LSBwdXJycjo6bWFwX2RmKHNjZXMsIAogICAgICAgICAgICAgICAgICAgICAgICB+IGFzLmRhdGEuZnJhbWUoY29sRGF0YSgueCkpICU+JQogICAgICAgICAgICAgICAgICAgICAgICAgIHRpYmJsZTo6cm93bmFtZXNfdG9fY29sdW1uKHZhciA9ICJjZWxsX2lkIiksIAogICAgICAgICAgICAgICAgICAgICAgICAuaWQgPSAicXVhbnRfaWQiKSAlPiUKICBkcGx5cjo6bGVmdF9qb2luKHF1YW50X2luZm8sIGJ5ID0gYygicXVhbnRfaWQiID0gInF1YW50X2RpciIpKQpgYGAKCgpDb21iaW5lIGFsbCBmZWF0dXJlIFFDIHN0YXRzIGludG8gYSBzaW5nbGUgZGF0YSBmcmFtZS4KYGBge3J9CnNjZV9mZWF0dXJlX3FjIDwtIHB1cnJyOjptYXBfZGYoc2NlcywgCiAgICAgICAgICAgICAgICAgICAgICAgIH4gYXMuZGF0YS5mcmFtZShyb3dEYXRhKC54KSkgJT4lCiAgICAgICAgICAgICAgICAgICAgICAgICAgdGliYmxlOjpyb3duYW1lc190b19jb2x1bW4odmFyID0gImdlbmVfaWQiKSwgCiAgICAgICAgICAgICAgICAgICAgICAgIC5pZCA9ICJxdWFudF9pZCIpICU+JQogIGRwbHlyOjpsZWZ0X2pvaW4ocXVhbnRfaW5mbywgYnkgPSBjKCJxdWFudF9pZCIgPSAicXVhbnRfZGlyIikpCmBgYAoKIyMgUGxvdHRpbmcgdGhlIFFDIHN0YXRzCgpQbG90IGNlbGwgUUMgZ2VuZSBhY2N1bXVsYXRpb24gY3VydmVzICYgbWl0byBmcmFjdGlvbgpgYGB7cn0KZ2dwbG90KHNjZV9jZWxsX3FjICU+JSBkcGx5cjo6ZmlsdGVyKGttZXIgPT0gIjMxIiksIAogICAgICAgYWVzKHggPSBzdW0sIHkgPSBkZXRlY3RlZCwgY29sb3IgPSBzdWJzZXRzX21pdG9fcGVyY2VudCkpICsKICBnZW9tX3BvaW50KCkgKwogIGZhY2V0X2dyaWQoc2FtcGxlIH4gcGFzdGUoaW5kZXhfY29udGVudCwgc2EpICkgKwogIHNjYWxlX2NvbG9yX3ZpcmlkaXNfYygpICsKICBzY2FsZV94X2xvZzEwKCkgKwogIHNjYWxlX3lfbG9nMTAoKQogIApgYGAKCiMgRmluZCBmZWF0dXJlcyB0aGF0IGFyZSByZWxpYWJseSBkZXRlY3RlZAoKVG8gc3RhcnQsIHdpbGwgc2VsZWN0IGZlYXR1cmVzIHRoYXQgYXJlIGRldGVjdGVkIGluID4gNSUgb2YgY2VsbHMgaW4gYXQgbGVhc3Qgb25lIHNhbXBsZS9pbmRleC4gCgpgYGB7cn0KZGV0ZWN0ZWRfZmVhdHVyZXMgPC0gc2NlX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihkZXRlY3RlZCA+PSA1LjApICU+JQogIGRwbHlyOjpwdWxsKGdlbmVfaWQpICU+JQogIHVuaXF1ZSgpCiMgSG93IG1hbnk/Cmxlbmd0aChkZXRlY3RlZF9mZWF0dXJlcykKYGBgCgpIb3cgbWFueSBvZiB0aGVzZSBhcmUgbm90IHByb3RlaW4gY29kaW5nPwoKYGBge3J9CmRldGVjdGVkX25jIDwtIGRldGVjdGVkX2ZlYXR1cmVzWyFkZXRlY3RlZF9mZWF0dXJlcyAlaW4lIGNvZGluZ19nZW5lc10KCmxlbmd0aChkZXRlY3RlZF9uYykKYGBgCgpMZXRzIGxvb2sgYXQgdGhlc2UgZmVhdHVyZXMgaW4gYSBiaXQgbW9yZSBkZXB0aCwgY29tcGFyaW5nIHRoZSBzYW1lIHNhbXBsZSB3aXRoIGZ1bGwgdHJhbnNjcmlwdG9tZSB2cyBjRE5BIG9ubHkuCmBgYHtyfQojIHNlbGVjdCBub25jb2RpbmcgZGV0ZWN0ZWQgZmVhdHVyZXMKbmNfZmVhdHVyZV9xYyA8LSBzY2VfZmVhdHVyZV9xYyAlPiUgCiAgZHBseXI6OmZpbHRlcihnZW5lX2lkICVpbiUgZGV0ZWN0ZWRfbmMpIAoKIyBHZXQgZGV0ZWN0ZWQgbmNSTkFzIGluIDgzNC10eG9tZV9rMzFfbm9fc2EgYXMgYSB0cmFuc2NyaXB0b21lIAoKbmNfdHhvbWUgPC0gIG5jX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihxdWFudF9pZCA9PSAiODM0LXR4b21lX2szMV9ub19zYSIpICU+JQogIGRwbHlyOjphcnJhbmdlKGRlc2MobWVhbikpCgpuY19jZG5hIDwtICBuY19mZWF0dXJlX3FjICU+JQogIGRwbHlyOjpmaWx0ZXIocXVhbnRfaWQgPT0gIjgzNC1jZG5hX2szMV9ub19zYSIpCgojIEpvaW4gdGhlIHRhYmxlcwpuY19mZWF0dXJlX2NvbXBhcmlzb24gPC0gbmNfdHhvbWUgJT4lCiAgZHBseXI6OmxlZnRfam9pbihuY19jZG5hLCAKICAgICAgICAgICAgICAgICAgIGJ5ID0gImdlbmVfaWQiLCAKICAgICAgICAgICAgICAgICAgIHN1ZmZpeCA9IGMoIl90eG9tZSIsICJfY2RuYSIpKSAlPiUKICBkcGx5cjo6c2VsZWN0KCJnZW5lX2lkIiwgIm1lYW5fdHhvbWUiLCAibWVhbl9jZG5hIiwgImRldGVjdGVkX3R4b21lIiwgImRldGVjdGVkX2NkbmEiKQoKbmNfZmVhdHVyZV9jb21wYXJpc29uCmBgYAoKQXMgZXhwZWN0ZWQsIG1vc3Qgb2YgdGhlIGZlYXR1cmVzIHRoYXQgYXJlIG5vdCBsaXN0ZWQgYXMgY29kaW5nIGRvIG5vdCBhcHBlYXIgaW4gdGhlIGNkbmEgb25seSBzZXQhClNvbWUgZG8sIGFuZCBzcG90IGNoZWNraW5nIGluZGljYXRlcyB0aGF0IHRob3NlIGFyZSBsaXN0ZWQgYXMgcHNldWRvZ2VuZXMsIHdoaWNoIGFyZSBmb3Igd2hhdGV2ZXIgcmVhc29uIHN0aWxsIGluY2x1ZGVkIGluIHRoZSBjRE5BIGZpbGUuCgpPZiB0aG9zZSB0aGF0IGRvIG5vdCwgdGhlIHRvcCBmZXcgZ2VuZXMgYXJlIE1BTEFUMSBhbmQgbWl0Y2hvbmRyaWFsIHJSTkFzLiAKTUFMQVQxIGlzIHBvdGVudGlhbGx5IGludGVyZXN0aW5nLCBhbmQgaXQgZG9lcyBzZWVtIHRoYXQgd2Ugc2hvdWxkIHByb2JhYmx5IGtlZXAgaXQhCgpMZXRzIG1ha2UgYSB2ZWN0b3Igb2YgdGhlIG5vbmNvZGluZyBjRE5BcyBmb3IgZnV0dXJlIHdvcms6CmBgYHtyfQpuY19jZG5hX2dlbmVzIDwtIHNjZV9mZWF0dXJlX3FjICU+JQogIGRwbHlyOjpmaWx0ZXIocXVhbnRfaWQgPT0gIjgzNC1jZG5hX2szMV9ub19zYSIsCiAgICAgICAgICAgICAgICAhIGdlbmVfaWQgJWluJSBjb2RpbmdfZ2VuZXMpICU+JQogIGRwbHlyOjpwdWxsKGdlbmVfaWQpCmBgYAoKCiMjIENvbXBhcmluZyBjb2RpbmcgYW5kIG5vbmNvZGluZyB0eG9tZXMKCkZpcnN0LCBsb29raW5nIGF0IHRoZSBtZWFuIGV4cHJlc3Npb24gb2YgZWFjaCBnZW5lLCBjb21wYXJpbmcgY29kaW5nIGFuZCBub25jb2Rpbmc6IGNvbXBhcmluZyB3aXRoaW4gc2FtcGxlcywgY29kaW5nIHRvIG5vbmNvZGluZy4KCmBgYHtyfQpzY2VfZmVhdHVyZV9maWx0ZXJlZCA8LSBzY2VfZmVhdHVyZV9xYyAlPiUgCiAgZHBseXI6OmZpbHRlcihrbWVyID09ICIzMSIsIHNhID09ICJubyIpICU+JQogIGRwbHlyOjptdXRhdGUoY2xhc3MgPSBkcGx5cjo6Y2FzZV93aGVuKGdlbmVfaWQgJWluJSBjb2RpbmdfZ2VuZXMgfiAiY29kaW5nIiwKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZW5lX2lkICVpbiUgbmNfY2RuYV9nZW5lcyB+ICJub25jb2RpbmcgY0ROQSIsCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFRSVUUgfiAibmNSTkEiKSkKCmdncGxvdChzY2VfZmVhdHVyZV9maWx0ZXJlZCwgCiAgICAgICBhZXMgKHggPSBtZWFuLCBjb2xvciA9IGNsYXNzKSkgKwogIGdlb21fZGVuc2l0eSgpICsgCiAgc2NhbGVfeF9sb2cxMCgpICsgCiAgc2NhbGVfY29sb3JfYnJld2VyKHBhbGV0dGUgPSAiRGFyazIiKSArCiAgZmFjZXRfZ3JpZChpbmRleF9jb250ZW50IH4gc2FtcGxlKQpgYGAKClRoZSBub25jb2RpbmcgY0ROQSBnZW5lcyBzZWVtIHRvIGZvbGxvdyBhIHZlcnkgc2ltaWxhciBkaXRyaWJ1dGlvbiB0byB0aGUgbm9uY29kaW5nIGNETkEgZ2VuZXMgKG1vc3RseSBwc2V1ZG9nZW5lcz8pLCBidXQgSSBjYW4ndCBzZWUgYW55IHBhcnRpY3VsYXIgcmVhc29uIHRvIGV4Y2x1ZGUgdGhlbS4gCklmIGFueXRoaW5nLCB0aGVyZSBhcmUgbmNSTkEgZ2VuZXMgdGVuZCB0byBoYXZlIHNvbWV3aGF0IGhpZ2hlciBtZWFuIGV4cHJlc3Npb24gdGhhbiB0aGUgbm9uY29kaW5nIGNETkFzIHdoaWNoIGFyZSBpbiB0aGUgY0ROQSBkYXRhc2V0LgoKSnVzdCB0byBjaGVjaywgbGV0cyBsb29rIGF0IHRoZSBjb3JyZWxhdGlvbiBvZiBjb2RpbmcgZ2VuZXMgd2l0aGluIGEgc2FtcGxlOgoKCmBgYHtyfQojIHBpY2sgYSByYW5kb20gc2V0IG9mIGNlbGxzIHRvIGxvb2sgYXQKY2VsbF9zYW1wbGUgPC0gc2FtcGxlKGNvbG5hbWVzKHNjZXNbWyI4MzQtY2RuYV9rMzFfbm9fc2EiXV0pLCAxMDApCgpmZWF0dXJlcyA8LSByb3duYW1lcyhzY2VzW1siODM0LWNkbmFfazMxX25vX3NhIl1dKQpjb2RpbmdfZmVhdHVyZXMgPC0gZmVhdHVyZXNbZmVhdHVyZXMgJWluJSBjb2RpbmdfZ2VuZXNdCgpjb21wYXJlX2V4cHJlc3Npb24gPC0gZGF0YS5mcmFtZSgKICBjZG5hID0gYXMudmVjdG9yKGNvdW50cyhzY2VzW1siODM0LWNkbmFfazMxX25vX3NhIl1dW2NvZGluZ19mZWF0dXJlcywgY2VsbF9zYW1wbGVdKSksCiAgdHhvbWUgPSBhcy52ZWN0b3IoY291bnRzKHNjZXNbWyI4MzQtdHhvbWVfazMxX25vX3NhIl1dW2NvZGluZ19mZWF0dXJlcywgY2VsbF9zYW1wbGVdKSkKKQoKY29yKGNvbXBhcmVfZXhwcmVzc2lvbiwgbWV0aG9kID0gInNwZWFybWFuIikKYGBgCmBgYHtyfQpxcXBsb3QobG9nMXAoY29tcGFyZV9leHByZXNzaW9uJGNkbmEpLCBsb2cxcChjb21wYXJlX2V4cHJlc3Npb24kdHhvbWUpKQpgYGAKQ29ycmVsYXRpb24gaXMgbmVhcmx5IHBlcmZlY3QuCgojIyMgVHJhbnNjcmlwdG9tZSBDb25jbHVzaW9uCgpJIHRoaW5rIHRoZXJlIGlzIGxpdHRsZSBjb3N0LCBhbmQgYSBub3QgaW5zaWduaWZpY2FudCBwb3RlbnRpYWwgZ2FpbiB0byBpbmNsdWRpbmcgbm9uY29kaW5nIFJOQSB0cmFuc2NyaXB0cyBpbiB0aGUgbWFwcGluZyBzZXRzIGZvciB0aGlzIHByb2plY3QuCgojIyBDb21wYXJpbmcgZGVjb3kgc2VxdWVuY2VzIChUQkQpCgoKCgo=
+
LS0tCnRpdGxlOiAiQWxldmluIEluZGV4IGNvbXBhcmlzb25zIgphdXRob3I6ICJKb3NodWEgU2hhcGlybyBmb3IgQ0NETCIKb3V0cHV0OiBodG1sX25vdGVib29rCi0tLQoKVGhpcyBub3RlYm9vayBjb250YWlucyBhbmFseXNpcyBvZiBzb21lIGludGlhbCBiZW5jaG1hcmsgaW4gcnVucyBvZiBBbGV2aW4gdXNpZ24gZGlmZmVyZW50IGluZGV4IGZpbGVzLCBsb29raW5nIGF0IG1hcHBpbmcgcmF0ZXMuCgojIyMgTG9hZCBMaWJyYXJpZXMKYGBge3Igc2V0dXB9CmxpYnJhcnkoZ2dwbG90MikKbGlicmFyeShtYWdyaXR0cikKbGlicmFyeShTaW5nbGVDZWxsRXhwZXJpbWVudCkKbGlicmFyeSh0eGltcG9ydCkKCiMgc2V0IHNlZWQKc2V0LnNlZWQoMjAyMCkKYGBgCgoKCiMjIyBGaWxlIGFuZCBkaXJlY3Rvcnkgc2V0dXAKYGBge3J9CmRhdGFfZGlyIDwtIGZpbGUucGF0aCgiZGF0YSIsICJhbGV2aW4tcXVhbnQiKQpkaXIuY3JlYXRlKGRhdGFfZGlyLCByZWN1cnNpdmUgPSBUUlVFLCBzaG93V2FybmluZ3MgPSBGQUxTRSkKCnF1YW50X3MzIDwtICJzMzovL25leHRmbG93LWNjZGwtcmVzdWx0cy9zY3BjYS1iZW5jaG1hcmsvYWxldmluLXF1YW50IgoKYGBgCgojIyBTeW5jIFMzIGZpbGVzCgpgYGB7cn0Kc3luY19jYWxsIDwtIHBhc3RlKCJhd3MgczMgc3luYyIsIHF1YW50X3MzLCBkYXRhX2RpcikKc3lzdGVtKHN5bmNfY2FsbCwgaWdub3JlLnN0ZG91dCA9IFRSVUUpCmBgYAoKR2V0IHRoZSBzYW1wbGUgbGlzdCBhbmQgbWFrZSBhIGRhdGEgZnJhbWUgd2l0aCBzYW1wbGUgaW5mbwoKYGBge3J9CnF1YW50X2RpcnMgPC0gbGlzdC5kaXJzKGRhdGFfZGlyLCBmdWxsLm5hbWVzID0gRkFMU0UsIHJlY3Vyc2l2ZSA9IEZBTFNFKQoKIyBzcGxpdCBpZHMgaW50byBjb21wb25lbnRzIGZvciBsYXRlciBwcm9jZXNzaW5nCnF1YW50X2luZm8gPC0gZGF0YS5mcmFtZSAocXVhbnRfZGlyID0gcXVhbnRfZGlycywgaW5mbyA9IHF1YW50X2RpcnMpICU+JQogIHRpZHlyOjpzZXBhcmF0ZShpbmZvLCBzZXAgPSAiWy1dIiwgCiAgICAgICAgICAgICAgICAgIGludG8gPSBjKCJzYW1wbGUiLCAiaW5kZXhfdHlwZSIpKSAlPiUKICB0aWR5cjo6c2VwYXJhdGUoaW5kZXhfdHlwZSwgCiAgICAgICAgICAgICAgICAgIGludG8gPSBjKCJpbmRleF9jb250ZW50IiwgImttZXIiLCAiZGVjb3kiKSwgCiAgICAgICAgICAgICAgICAgIGV4dHJhID0gImRyb3AiKSAlPiUKICBkcGx5cjo6bXV0YXRlKGttZXIgPSBzdHJpbmdyOjpzdHJfcmVtb3ZlKGttZXIsICJrIikpCiAgCmBgYAoKIyMgR2V0IEFubm90YXRpb25zIGZyb20gQW5ub3RhdGlvbkh1YgoKYGBge3J9Cmh1YiA9IEFubm90YXRpb25IdWI6OkFubm90YXRpb25IdWIoYXNrID0gRkFMU0UpCiMgRW5zZW1ibCB2MTAwIEhvbW8gU2FwaWVucyBpcyBBSDc5Njg5CmVuc2RiID0gaHViW1siQUg3OTY4OSJdXQplbnNnIDwtIGdlbmVzKGVuc2RiKQpgYGAKCkNyZWF0ZSB2ZWN0b3JzIG9mIG1pdG9jaG9uZGlyYWwgZ2VuZXMgYW5kIGNvZGluZyBnZW5lcyBmb3IgbGF0ZXIuCgpgYGB7cn0KIyBjcmVhdGUgdGhlIG1pdG9jaG9uZHJpYWwgZ2VuZSBsaXN0Cm1pdG9fZ2VuZXMgPC0gZW5zZ1tzZXFuYW1lcyhlbnNnKSA9PSAnTVQnXSRnZW5lX2lkCgpjb2RpbmdfZ2VuZXMgPC0gZW5zZ1tlbnNnJGdlbmVfYmlvdHlwZSA9PSAicHJvdGVpbl9jb2RpbmciXSRnZW5lX2lkCmBgYAoKCgojIFByb2Nlc3MgQWxldmluIHF1YW50aWZpY2F0aW9ucwoKIyMgdHhpbXBvcnQgYW5kIG1ha2UgU0NFcwoKYGBge3J9CnNjZXMgPC0gcXVhbnRfZGlycyAlPiUKICBwdXJycjo6bWFwKAogICAgfiB0eGltcG9ydChmaWxlLnBhdGgoZGF0YV9kaXIsIC54LCAiYWxldmluIiwgInF1YW50c19tYXQuZ3oiKSwKICAgICAgICAgICAgICAgdHlwZSA9ICJhbGV2aW4iKSkgJT4lCiAgcHVycnI6Om1hcCgKICAgIH4gU2luZ2xlQ2VsbEV4cGVyaW1lbnQobGlzdChjb3VudHMgPSAueCRjb3VudHMpKSkgCgojIGFkZCBuYW1lcwpuYW1lcyhzY2VzKSA8LSBxdWFudF9kaXJzCmBgYAoKCkNhbGN1bGF0ZSBjZWxsIGFuZCBmZWF0dXJlIFFDIHN0YXRpc3RpY3MgZm9yIGVhY2ggc2FtcGxlLgoKYGBge3J9CnNjZXMgPC0gc2NlcyAlPiUgCiAgcHVycnI6Om1hcCgKICAgIH4gc2NhdGVyOjphZGRQZXJDZWxsUUMoCiAgICAgIC54LAogICAgICBzdWJzZXRzID0gbGlzdChtaXRvID0gbWl0b19nZW5lc1ttaXRvX2dlbmVzICVpbiUgcm93bmFtZXMoLngpXSwKICAgICAgICAgICAgICAgICAgICAgbmNSTkEgPSByb3duYW1lcygueClbIXJvd25hbWVzKC54KSAlaW4lIGNvZGluZ19nZW5lc10gKQogICAgKSAKICApICU+JQogIHB1cnJyOjptYXAoc2NhdGVyOjphZGRQZXJGZWF0dXJlUUMpCmBgYAoKQ29tYmluZSBhbGwgY2VsbCBRQyBzdGF0cyBpbnRvIGEgc2luZ2xlIGRhdGEgZnJhbWUKYGBge3J9CnNjZV9jZWxsX3FjIDwtIHB1cnJyOjptYXBfZGYoc2NlcywgCiAgICAgICAgICAgICAgICAgICAgICAgIH4gYXMuZGF0YS5mcmFtZShjb2xEYXRhKC54KSkgJT4lCiAgICAgICAgICAgICAgICAgICAgICAgICAgdGliYmxlOjpyb3duYW1lc190b19jb2x1bW4odmFyID0gImNlbGxfaWQiKSwgCiAgICAgICAgICAgICAgICAgICAgICAgIC5pZCA9ICJxdWFudF9pZCIpICU+JQogIGRwbHlyOjpsZWZ0X2pvaW4ocXVhbnRfaW5mbywgYnkgPSBjKCJxdWFudF9pZCIgPSAicXVhbnRfZGlyIikpCmBgYAoKCkNvbWJpbmUgYWxsIGZlYXR1cmUgUUMgc3RhdHMgaW50byBhIHNpbmdsZSBkYXRhIGZyYW1lLgpgYGB7cn0Kc2NlX2ZlYXR1cmVfcWMgPC0gcHVycnI6Om1hcF9kZihzY2VzLCAKICAgICAgICAgICAgICAgICAgICAgICAgfiBhcy5kYXRhLmZyYW1lKHJvd0RhdGEoLngpKSAlPiUKICAgICAgICAgICAgICAgICAgICAgICAgICB0aWJibGU6OnJvd25hbWVzX3RvX2NvbHVtbih2YXIgPSAiZ2VuZV9pZCIpLCAKICAgICAgICAgICAgICAgICAgICAgICAgLmlkID0gInF1YW50X2lkIikgJT4lCiAgZHBseXI6OmxlZnRfam9pbihxdWFudF9pbmZvLCBieSA9IGMoInF1YW50X2lkIiA9ICJxdWFudF9kaXIiKSkKYGBgCgojIyBQbG90dGluZyB0aGUgUUMgc3RhdHMKClBsb3QgY2VsbCBRQyBnZW5lIGFjY3VtdWxhdGlvbiBjdXJ2ZXMgJiBtaXRvIGZyYWN0aW9uCmBgYHtyfQpnZ3Bsb3Qoc2NlX2NlbGxfcWMgJT4lIGRwbHlyOjpmaWx0ZXIoa21lciA9PSAiMzEiKSwgCiAgICAgICBhZXMoeCA9IHN1bSwgeSA9IGRldGVjdGVkLCBjb2xvciA9IHN1YnNldHNfbWl0b19wZXJjZW50KSkgKwogIGdlb21fcG9pbnQoKSArCiAgZmFjZXRfZ3JpZChzYW1wbGUgfiBwYXN0ZShpbmRleF9jb250ZW50LCBkZWNveSkgKSArCiAgc2NhbGVfY29sb3JfdmlyaWRpc19jKCkgKwogIHNjYWxlX3hfbG9nMTAoKSArCiAgc2NhbGVfeV9sb2cxMCgpCiAgCmBgYAoKIyBGaW5kIGZlYXR1cmVzIHRoYXQgYXJlIHJlbGlhYmx5IGRldGVjdGVkCgpUbyBzdGFydCwgd2lsbCBzZWxlY3QgZmVhdHVyZXMgdGhhdCBhcmUgZGV0ZWN0ZWQgaW4gPiA1JSBvZiBjZWxscyBpbiBhdCBsZWFzdCBvbmUgc2FtcGxlL2luZGV4LiAKCmBgYHtyfQpkZXRlY3RlZF9mZWF0dXJlcyA8LSBzY2VfZmVhdHVyZV9xYyAlPiUKICBkcGx5cjo6ZmlsdGVyKGRldGVjdGVkID49IDUuMCkgJT4lCiAgZHBseXI6OnB1bGwoZ2VuZV9pZCkgJT4lCiAgdW5pcXVlKCkKIyBIb3cgbWFueT8KbGVuZ3RoKGRldGVjdGVkX2ZlYXR1cmVzKQpgYGAKCkhvdyBtYW55IG9mIHRoZXNlIGFyZSBub3QgcHJvdGVpbiBjb2Rpbmc/CgpgYGB7cn0KZGV0ZWN0ZWRfbmMgPC0gZGV0ZWN0ZWRfZmVhdHVyZXNbIWRldGVjdGVkX2ZlYXR1cmVzICVpbiUgY29kaW5nX2dlbmVzXQoKbGVuZ3RoKGRldGVjdGVkX25jKQpgYGAKCkxldHMgbG9vayBhdCB0aGVzZSBmZWF0dXJlcyBpbiBhIGJpdCBtb3JlIGRlcHRoLCBjb21wYXJpbmcgdGhlIHNhbWUgc2FtcGxlIHdpdGggZnVsbCB0cmFuc2NyaXB0b21lIHZzIGNETkEgb25seS4KYGBge3J9CiMgc2VsZWN0IG5vbmNvZGluZyBkZXRlY3RlZCBmZWF0dXJlcwpuY19mZWF0dXJlX3FjIDwtIHNjZV9mZWF0dXJlX3FjICU+JSAKICBkcGx5cjo6ZmlsdGVyKGdlbmVfaWQgJWluJSBkZXRlY3RlZF9uYykgCgojIEdldCBkZXRlY3RlZCBuY1JOQXMgaW4gODM0LXR4b21lX2szMV9ub19zYSBhcyBhIHRyYW5zY3JpcHRvbWUgCgpuY190eG9tZSA8LSAgbmNfZmVhdHVyZV9xYyAlPiUKICBkcGx5cjo6ZmlsdGVyKHF1YW50X2lkID09ICI4MzQtdHhvbWVfazMxX25vX3NhIikgJT4lCiAgZHBseXI6OmFycmFuZ2UoZGVzYyhtZWFuKSkKCm5jX2NkbmEgPC0gIG5jX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihxdWFudF9pZCA9PSAiODM0LWNkbmFfazMxX25vX3NhIikKCiMgSm9pbiB0aGUgdGFibGVzCm5jX2ZlYXR1cmVfY29tcGFyaXNvbiA8LSBuY190eG9tZSAlPiUKICBkcGx5cjo6bGVmdF9qb2luKG5jX2NkbmEsIAogICAgICAgICAgICAgICAgICAgYnkgPSAiZ2VuZV9pZCIsIAogICAgICAgICAgICAgICAgICAgc3VmZml4ID0gYygiX3R4b21lIiwgIl9jZG5hIikpICU+JQogIGRwbHlyOjpzZWxlY3QoImdlbmVfaWQiLCAibWVhbl90eG9tZSIsICJtZWFuX2NkbmEiLCAiZGV0ZWN0ZWRfdHhvbWUiLCAiZGV0ZWN0ZWRfY2RuYSIpCgpuY19mZWF0dXJlX2NvbXBhcmlzb24KYGBgCgpBcyBleHBlY3RlZCwgbW9zdCBvZiB0aGUgZmVhdHVyZXMgdGhhdCBhcmUgbm90IGxpc3RlZCBhcyBjb2RpbmcgZG8gbm90IGFwcGVhciBpbiB0aGUgY2RuYSBvbmx5IHNldCEKU29tZSBkbywgYW5kIHNwb3QgY2hlY2tpbmcgaW5kaWNhdGVzIHRoYXQgdGhvc2UgYXJlIGxpc3RlZCBhcyBwc2V1ZG9nZW5lcywgd2hpY2ggYXJlIGZvciB3aGF0ZXZlciByZWFzb24gc3RpbGwgaW5jbHVkZWQgaW4gdGhlIGNETkEgZmlsZS4KCk9mIHRob3NlIHRoYXQgZG8gbm90LCB0aGUgdG9wIGZldyBnZW5lcyBhcmUgTUFMQVQxIGFuZCBtaXRjaG9uZHJpYWwgclJOQXMuIApNQUxBVDEgaXMgcG90ZW50aWFsbHkgaW50ZXJlc3RpbmcsIGFuZCBpdCBkb2VzIHNlZW0gdGhhdCB3ZSBzaG91bGQgcHJvYmFibHkga2VlcCBpdCEKCkxldHMgbWFrZSBhIHZlY3RvciBvZiB0aGUgbm9uY29kaW5nIGNETkFzIGZvciBmdXR1cmUgd29yazoKYGBge3J9Cm5jX2NkbmFfZ2VuZXMgPC0gc2NlX2ZlYXR1cmVfcWMgJT4lCiAgZHBseXI6OmZpbHRlcihxdWFudF9pZCA9PSAiODM0LWNkbmFfazMxX25vX3NhIiwKICAgICAgICAgICAgICAgICEgZ2VuZV9pZCAlaW4lIGNvZGluZ19nZW5lcykgJT4lCiAgZHBseXI6OnB1bGwoZ2VuZV9pZCkKYGBgCgoKIyMgQ29tcGFyaW5nIGNvZGluZyBhbmQgbm9uY29kaW5nIHR4b21lcwoKRmlyc3QsIGxvb2tpbmcgYXQgdGhlIG1lYW4gZXhwcmVzc2lvbiBvZiBlYWNoIGdlbmUsIGNvbXBhcmluZyBjb2RpbmcgYW5kIG5vbmNvZGluZzogY29tcGFyaW5nIHdpdGhpbiBzYW1wbGVzLCBjb2RpbmcgdG8gbm9uY29kaW5nLgoKYGBge3J9CnNjZV9mZWF0dXJlX2ZpbHRlcmVkIDwtIHNjZV9mZWF0dXJlX3FjICU+JSAKICBkcGx5cjo6ZmlsdGVyKGttZXIgPT0gIjMxIiwgZGVjb3kgPT0gIm5vIikgJT4lCiAgZHBseXI6Om11dGF0ZShjbGFzcyA9IGRwbHlyOjpjYXNlX3doZW4oZ2VuZV9pZCAlaW4lIGNvZGluZ19nZW5lcyB+ICJjb2RpbmciLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdlbmVfaWQgJWluJSBuY19jZG5hX2dlbmVzIH4gIm5vbmNvZGluZyBjRE5BIiwKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBUUlVFIH4gIm5jUk5BIikpCgpnZ3Bsb3Qoc2NlX2ZlYXR1cmVfZmlsdGVyZWQsIAogICAgICAgYWVzICh4ID0gbWVhbiwgY29sb3IgPSBjbGFzcykpICsKICBnZW9tX2RlbnNpdHkoKSArIAogIHNjYWxlX3hfbG9nMTAoKSArIAogIHNjYWxlX2NvbG9yX2JyZXdlcihwYWxldHRlID0gIkRhcmsyIikgKwogIGZhY2V0X2dyaWQoaW5kZXhfY29udGVudCB+IHNhbXBsZSkKYGBgCgpUaGUgbm9uY29kaW5nIGNETkEgZ2VuZXMgc2VlbSB0byBmb2xsb3cgYSB2ZXJ5IHNpbWlsYXIgZGl0cmlidXRpb24gdG8gdGhlIG5vbmNvZGluZyBjRE5BIGdlbmVzIChtb3N0bHkgcHNldWRvZ2VuZXM/KSwgYnV0IEkgY2FuJ3Qgc2VlIGFueSBwYXJ0aWN1bGFyIHJlYXNvbiB0byBleGNsdWRlIHRoZW0uIApJZiBhbnl0aGluZywgdGhlcmUgYXJlIG5jUk5BIGdlbmVzIHRlbmQgdG8gaGF2ZSBzb21ld2hhdCBoaWdoZXIgbWVhbiBleHByZXNzaW9uIHRoYW4gdGhlIG5vbmNvZGluZyBjRE5BcyB3aGljaCBhcmUgaW4gdGhlIGNETkEgZGF0YXNldC4KCkp1c3QgdG8gY2hlY2ssIGxldHMgbG9vayBhdCB0aGUgY29ycmVsYXRpb24gb2YgY29kaW5nIGdlbmVzIHdpdGhpbiBhIHNhbXBsZToKCgpgYGB7cn0KIyBwaWNrIGEgcmFuZG9tIHNldCBvZiBjZWxscyB0byBsb29rIGF0CmNlbGxfc2FtcGxlIDwtIHNhbXBsZShjb2xuYW1lcyhzY2VzW1siOTA1XzMtY2RuYV9rMzFfbm9fc2EiXV0pLCAxMDApCgpmZWF0dXJlcyA8LSByb3duYW1lcyhzY2VzW1siOTA1XzMtY2RuYV9rMzFfbm9fc2EiXV0pCmNvZGluZ19mZWF0dXJlcyA8LSBmZWF0dXJlc1tmZWF0dXJlcyAlaW4lIGNvZGluZ19nZW5lc10KCmNvbXBhcmVfZXhwcmVzc2lvbiA8LSBkYXRhLmZyYW1lKAogIGNkbmEgPSBhcy52ZWN0b3IoY291bnRzKHNjZXNbWyI5MDVfMy1jZG5hX2szMV9ub19zYSJdXVtjb2RpbmdfZmVhdHVyZXMsIGNlbGxfc2FtcGxlXSkpLAogIHR4b21lID0gYXMudmVjdG9yKGNvdW50cyhzY2VzW1siOTA1XzMtdHhvbWVfazMxX25vX3NhIl1dW2NvZGluZ19mZWF0dXJlcywgY2VsbF9zYW1wbGVdKSkKKQoKY29yKGNvbXBhcmVfZXhwcmVzc2lvbiwgbWV0aG9kID0gInNwZWFybWFuIikKYGBgCmBgYHtyfQpnZ3Bsb3QoY29tcGFyZV9leHByZXNzaW9uLCBhZXMoeCA9IGxvZzFwKGNkbmEpLCB5ID0gbG9nMXAodHhvbWUpKSkgKwogIGdlb21fcG9pbnQoKQpgYGAKQ29ycmVsYXRpb24gaXMgdmVyeSBnb29kIGZvciBnZW5lcyBwcmVzZW50IGluIGJvdGgsIHdpdGggZXhwcmVzc2lvbiBtb3JlIG9mdGVuIGxvd2VyIGluIHRoZSB0cmFuc2NyaXB0b21lIHNldCwgd2hpY2ggbWF5IG1ha2Ugc2Vuc2UgaW4gdGhlIGNhc2Ugb2YgbXVsdGltYXBwaW5nIGludHJvZHVjZWQgYnkgdGhlIGxhcmdlciBudW1iZXIgb2YgcG90ZW50aWFsIHRhcmdldHMuCkludGVyZXN0aW5nIHRob3VnaCB0aGF0IHRoZXJlIGFyZSBzb21lIGdlbmVzIHdoaWNoIGRvIG5vdCBhcHBlYXIgdG8gYmUgZXhwcmVzc2VkIGluIHRoZSBjRE5BIHNldCB0aGF0IGhhdmUgZXhwcmVzc2lvbiBpbiB0aGUgdHhvbWUuCgojIyMgVHJhbnNjcmlwdG9tZSBDb25jbHVzaW9uCgpJIHRoaW5rIHRoZXJlIGlzIGxpdHRsZSBjb3N0LCBhbmQgYSBub3QgaW5zaWduaWZpY2FudCBwb3RlbnRpYWwgZ2FpbiB0byBpbmNsdWRpbmcgbm9uY29kaW5nIFJOQSB0cmFuc2NyaXB0cyBpbiB0aGUgbWFwcGluZyBzZXRzIGZvciB0aGlzIHByb2plY3QuCgojIyBDb21wYXJpbmcgZGVjb3kgc2VxdWVuY2VzIChUQkQpCgpHZXQgY0ROQS1vbmx5IGRlY295IGNvbXBhcmlzb24gZGF0YS4KYGBge3J9CnNjZV9mZWF0dXJlX2ZpbHRlcmVkIDwtIHNjZV9mZWF0dXJlX3FjICU+JSAKICBkcGx5cjo6ZmlsdGVyKGttZXIgPT0gIjMxIiwgaW5kZXhfY29udGVudCA9PSAiY2RuYSIpCmBgYAoKYGBge3J9CmRlY295X21lYW5zIDwtIHNjZV9mZWF0dXJlX2ZpbHRlcmVkICU+JQogIHRpZHlyOjpwaXZvdF93aWRlcihpZF9jb2xzID0gYyhnZW5lX2lkLCBzYW1wbGUpLAogICAgICAgICAgICAgICAgICAgICBuYW1lc19mcm9tID0gZGVjb3ksCiAgICAgICAgICAgICAgICAgICAgIHZhbHVlc19mcm9tID0gbWVhbikgCmBgYAoKRmlyc3Qgb2ZmLCBob3cgd2VsbCBjb3JyZWxhdGVkIGFyZSB0aGUgbWVhbnMgZm9yIHZhcmlvdXMgZGVjb3kgY2hvaWNlcz8gCldlIGV4cGVjdCB2ZXJ5IGdvb2QgY29ycmVsYXRpb25zLgoKYGBge3J9CmNvcihkZWNveV9tZWFuc1ssMzo1XSwgbWV0aG9kID0gInNwZWFybWFuIiwgdXNlID0gImNvbXBsZXRlLm9icyIpCmBgYAoKCgpBbmQgd2UgaGF2ZSB0aGVtLi4uIGludGVyZXN0aW5nbHksIHRoZSBiZXN0IGNvcnJlbGF0aW9uIGlzIGJldHdlZW4gbm8gZGVjb3lzIGFuZCB0aGUgcGFydGlhbCBkZWNveTogdGhlIGZ1bGwgZGVjb3kgaW5kZXggaXMgbW9yZSBkaWZmZXJlbnQgYnkgdGhpcyBtZWFzdXJlLgpUaGlzIGxlYWRzIG1lIHRvIHRoZSBwcmVsaW1pbmFyeSBjb25jbHVzaW9uIHRoYXQgdGhlIHBhcnRpYWwgaW5kZXggKHdoaWNoIG5vdGFibHkgdXNlcyBhIHNsaWdodGx5IGRpZmZlcmVudCBzZXQgb2YgdHJhbnNjaXB0cyBhdCB0aGlzIHN0YWdlLCBkdWUgdG8gbm90IGJlaW5nIGJ1aWx0IGxvY2FsbHkpIG1heSBub3QgYmUgd29ydGggcHVyc3VpbmcsIGFzIGl0IHNlZW1zIHRvIG1ha2UgdmVyeSBsaXR0bGUgZGlmZmVyZW5jZS4KCkRvbid0IGZvcmdldCB0byBsb29rIGF0IHlvdXIgZGF0YSEKYGBge3J9CnBhaXJzKGRlY295X21lYW5zWywzOjVdKQpgYGAKV2hvYS4uLiBzZWVtcyBsaWtlIGEgbG90IGlzIGJlaW5nIGRyaXZlbiBieSBhIGZldyBwb2ludHMgdGhhdCBhcmUgdmVyeSBkaWZmZXJlbnQgaW4gdGhlIGZ1bGwgaW5kZXggZGF0YS4gCldoYXQgYXJlIHRob3NlIGdlbmVzPwoKCmBgYHtyfQpkZWNveV9tZWFucyAlPiUgCiAgZHBseXI6Om11dGF0ZShkaWZmID0gKG5vIC0gZnVsbCkvKGZ1bGwgKyAxKSkgJT4lCiAgZHBseXI6OmFycmFuZ2UoZGVzYyhkaWZmKSkKYGBgCkVOU0cwMDAwMDI2OTAyOCwgd2hpY2ggaXMgYnkgZmFyIHRoZSBtb3N0IGRpZmZlcmVudCwgaXMgdGhlIGdlbmUgKk1ULVJOUjIgbGlrZSAxMiogd2hpY2gsIGFzaWRlIGZyb20gYmVpbmcgcmVsYXRlZCB0byBhdCBsZWFzdCAxMiBvdGhlciBnZW5lcywgZG9lcyBub3QgcmluZyBhbnkgcGFydGljdWxhciBiZWxscy4KSG93ZXZlciwgRU5TRzAwMDAwMjU1ODIzIGlzICpNVC1STlIyLWxpa2UgOCogCgpPdGhlciBnZW5lcyBhdCB0aGUgdG9wIG9mIHRoZSBkaWZmZXJlbnRpYWwgbGlzdDoKRU5TRzAwMDAwMTYzODY0OiBOTU5BVDMgbmljb3RpbmFtaWRlIG51Y2xlb3RpZGUgYWRlbnlseWx0cmFuc2ZlcmFzZSAzCkVOU0cwMDAwMDE5NzU2MzogUElHTiBQaG9zcGhhdGlkeWxpbm9zaXRvbCBHbHljYW4gQW5jaG9yIEJpb3N5bnRoZXNpcyBDbGFzcyBOCkVOU0cwMDAwMDE3MzU1OTogTkFCUDEgTnVjbGVpYyBBY2lkIEJpbmRpbmcgUHJvdGVpbiAxCgpJIGRvbid0IHJlYWxseSBrbm93IHdoYXQgdG8gZG8gd2l0aCB0aGlzIGxpc3QuLi4gaXQgc2VlbXMgbGlrZSBmZXcgZ2VuZXMgd2lsbCBoYXZlIGxhcmdlIGRpZmZlcmVuY2VzLCBidXQgYSBmZXcgZGlmZmVyZW5jZXMgYXJlIGVub3Jtb3VzIQoKCkp1c3QgYXMgYSBzYW5pdHkgY2hlY2ssIGxldHMgcmVwZWF0IG9uZSBvZiB0aGUgYW5hbHlzZXMgd2UgZGlkIGJlZm9yZSwgY29tcGFyaW5nIHRoZSBjRE5BIHRvIHRoZSB0cmFuc2NyaXB0b21lIGZvciB0aGUgZnVsbCBkZWNveSBpbmRleCAoc2luY2Ugd2Ugbm93IGhhdmUgYm90aCk6CgpgYGB7cn0KIyB1c2luZyB0aGUgc2FtZSBgY2VsbF9zYW1wbGVgIGFuZCBgY29kaW5nX2ZlYXR1cmVzYCBhcyBwcmV2aW91c2x5Cgpjb21wYXJlX2V4cHJlc3Npb25fZnVsbCA8LSBkYXRhLmZyYW1lKAogIGNkbmEgPSBhcy52ZWN0b3IoY291bnRzKHNjZXNbWyI5MDVfMy1jZG5hX2szMV9mdWxsX3NhIl1dW2NvZGluZ19mZWF0dXJlcywgY2VsbF9zYW1wbGVdKSksCiAgdHhvbWUgPSBhcy52ZWN0b3IoY291bnRzKHNjZXNbWyI5MDVfMy10eG9tZV9rMzFfZnVsbF9zYSJdXVtjb2RpbmdfZmVhdHVyZXMsIGNlbGxfc2FtcGxlXSkpCikKCmNvcihjb21wYXJlX2V4cHJlc3Npb25fZnVsbCwgbWV0aG9kID0gInNwZWFybWFuIikKYGBgCmBgYHtyfQpnZ3Bsb3QoY29tcGFyZV9leHByZXNzaW9uX2Z1bGwsIGFlcyhsb2cxcChjZG5hKSwgeSA9IGxvZzFwKHR4b21lKSkpICsKICBnZW9tX3BvaW50KCkKYGBgCgpJbnRlcmVzdGluZ2x5LCB0aGUgY29ycmVsYXRpb24gYmV0d2VlbiBjRE5BIGFuZCB0eG9tZSBleHByZXNzaW9uIHZhbHVlcyAoZm9yIGNvZGluZyBnZW5lcykgdXNpbmcgdGhlIGZ1bGwgZGVjb3kgc2VlbXMgc3Vic3RhbnRpYWxseSBiZXR0ZXIgdGhhbiB3aXRoIHRoZSBubyBkZWNveSBzZXF1ZW5jZXMhCgpUaGlzIHNlZW1zIHRvIG1lIHRvIGJlIGEgZ29vZCBhcmd1bWVudCBmb3IgdXNpbmcgdGhlIGZ1bGwgZGVjb3ksIGlmIGl0IGlzIGxlc3Mgc2Vuc2l0aXZlIHRvIHRoZSBjaG9zZW4gdHJhbnNjcmlwdCBsaXN0Lgo=
From d3f39fb20a98e83e2a88d6dc5bc25fb58593c788 Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Thu, 10 Sep 2020 14:50:24 -0400 Subject: [PATCH 10/15] Spellcheck and rebuild with TOC --- workflows/benchmarks/benchmark-analysis.Rmd | 19 +- .../benchmarks/benchmark-analysis.nb.html | 1189 ++++++++++++++++- 2 files changed, 1193 insertions(+), 15 deletions(-) diff --git a/workflows/benchmarks/benchmark-analysis.Rmd b/workflows/benchmarks/benchmark-analysis.Rmd index f428922..a7b3c2a 100644 --- a/workflows/benchmarks/benchmark-analysis.Rmd +++ b/workflows/benchmarks/benchmark-analysis.Rmd @@ -1,10 +1,13 @@ --- title: "Alevin Index comparisons" author: "Joshua Shapiro for CCDL" -output: html_notebook +output: + html_notebook: + toc: true + toc_float: true --- -This notebook contains analysis of some intial benchmark in runs of Alevin usign different index files, looking at mapping rates. +This notebook contains analysis of some initial benchmark in runs of Alevin using different index files, looking at mapping rates. ### Load Libraries ```{r setup} @@ -55,12 +58,12 @@ quant_info <- data.frame (quant_dir = quant_dirs, info = quant_dirs) %>% ```{r} hub = AnnotationHub::AnnotationHub(ask = FALSE) -# Ensembl v100 Homo Sapiens is AH79689 +# Ensembl v100 Homo sapiens is AH79689 ensdb = hub[["AH79689"]] ensg <- genes(ensdb) ``` -Create vectors of mitochondiral genes and coding genes for later. +Create vectors of mitochondrial genes and coding genes for later. ```{r} # create the mitochondrial gene list @@ -181,10 +184,10 @@ nc_feature_comparison <- nc_txome %>% nc_feature_comparison ``` -As expected, most of the features that are not listed as coding do not appear in the cdna only set! +As expected, most of the features that are not listed as coding do not appear in the cDNA only set! Some do, and spot checking indicates that those are listed as pseudogenes, which are for whatever reason still included in the cDNA file. -Of those that do not, the top few genes are MALAT1 and mitchondrial rRNAs. +Of those that do not, the top few genes are MALAT1 and mitochondrial rRNAs. MALAT1 is potentially interesting, and it does seem that we should probably keep it! Lets make a vector of the noncoding cDNAs for future work: @@ -215,7 +218,7 @@ ggplot(sce_feature_filtered, facet_grid(index_content ~ sample) ``` -The noncoding cDNA genes seem to follow a very similar ditribution to the noncoding cDNA genes (mostly pseudogenes?), but I can't see any particular reason to exclude them. +The noncoding cDNA genes seem to follow a very similar distribution to the noncoding cDNA genes (mostly pseudogenes?), but I can't see any particular reason to exclude them. If anything, there are ncRNA genes tend to have somewhat higher mean expression than the noncoding cDNAs which are in the cDNA dataset. Just to check, lets look at the correlation of coding genes within a sample: @@ -271,7 +274,7 @@ cor(decoy_means[,3:5], method = "spearman", use = "complete.obs") And we have them... interestingly, the best correlation is between no decoys and the partial decoy: the full decoy index is more different by this measure. -This leads me to the preliminary conclusion that the partial index (which notably uses a slightly different set of transcipts at this stage, due to not being built locally) may not be worth pursuing, as it seems to make very little difference. +This leads me to the preliminary conclusion that the partial index (which notably uses a slightly different set of transcripts at this stage, due to not being built locally) may not be worth pursuing, as it seems to make very little difference. Don't forget to look at your data! ```{r} diff --git a/workflows/benchmarks/benchmark-analysis.nb.html b/workflows/benchmarks/benchmark-analysis.nb.html index 8ececda..76e6a4c 100644 --- a/workflows/benchmarks/benchmark-analysis.nb.html +++ b/workflows/benchmarks/benchmark-analysis.nb.html @@ -1318,6 +1318,1080 @@ PagedTableDoc.initAll(); }; + + + +