Skip to content

Commit

Permalink
update pipeline: flexiplex cannot output gz file
Browse files Browse the repository at this point in the history
  • Loading branch information
ChangqingW committed Jul 21, 2023
1 parent cb526a7 commit 61f8c42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/sc_long_multisample_pipeline.R
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ sc_long_multisample_pipeline <-
if (length(barcodes_file) != length(fastqs)) {
stop(length(barcodes_file), " barcode allow-lists provided while there are ", length(fastqs), "fastq file. Please either provide one allow-list per sample, or one allow-list for all samples.")
}
infqs <- file.path(outdir, paste(samples, "matched_reads.fastq.gz", sep = "_"))
infqs <- file.path(outdir, paste(samples, "matched_reads.fastq", sep = "_"))
bc_stats <- file.path(outdir, paste(samples, "matched_barcode_stat", sep = "_"))
for (i in 1:length(fastqs)) {
find_barcode(
Expand Down
2 changes: 1 addition & 1 deletion R/sc_long_pipeline.R
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ sc_long_pipeline <-
if (!file.exists(barcodes_file)) {
stop("barcodes_file must exists.")
}
infq <- file.path(outdir, "matched_reads.fastq.gz")
infq <- file.path(outdir, "matched_reads.fastq")
bc_stat <- file.path(outdir, "matched_barcode_stat")
find_barcode(
fastq = fastq,
Expand Down

0 comments on commit 61f8c42

Please sign in to comment.