Splitting Big Fastq directory into smaller parts
Hi everyone, I have 1000 fastq files, it's reading by Nanopore Sequencing. I want to compress every 100 fastq files into one fastqz file. How to split it?
gzip
nanopore
rna-seq
fastq
• 2,179 views
•
link
written
by
santos48 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
How to download multiple SRA fasta files in ubuntu
written by wyt1995 •Hi, I often times have to do manual download by copying likes of every SRA dataset by hand and use fastq-dump. I want to download …
-
Hybrid assembly SPAdes (Ox. Nanopore + Illumina)
written by A_heath •Hi all, I have both Oxford Nanopore and Illumina sequencing data of a bacterial genome. I would like to perform an hybrid assembly combining the …
-
FeatureCounts Number of Reads
written by santos48 •Hi everyone, I have over 4000 human Rna-seq data reading by nanopore Minion, I merged all files with the 'cat' command. I am using featureCounts …
-
Look at Different Locus in the Bam File
written by santos48 •Hello everyone, I have human RNA-seq data that are reading by MiniON. I have many questions first, when I aligned all FASTQ files with the …
-
Create Annotation for Long Read Nanopore Rna-Seq Data
written by santos48 •I have nanopore sequencing human Rna-seq data. I want to create feature counts files for differential expression, but how to create an annotation folder corresponding …
-
How to Write Loop For Trimming Every FastQ File Individually
written by santos48 •I have human Rna-Seq data by reading nanopore. Data has over 1000 .fastq files. I want to trim all fastq files individually. I am using …
-
Nanopore Preprocessing Step
written by santos48 •When I analyze Nanopore reading, should I analyze each file individually(I have over 1000 .fastq files) or combine it with the cat command to analyze …
-
A question on GenomicsDBImport (GATK)
written by Laven9 •I am now trying to use GenomicsDBImport (GATK). I have a .bed file for my WES sequencing. Should I split the .bed file into small …
-
Split oxford nanopore MinION fastq file based on barcode
written by ambi1999 •Hi, How can I split a single fastq file into multiple fastq file based on barcode in the header of reads? I got a single …
-
Splitting Individual FASTA/FASTQ reads from NGS data
written by NGS-Newbie •Hi All I have subsets of 100 and 500 reads in FASTA and FASTQ formats. How can I split this one FASTA/FASTQ file with 100 …
do you have a pattern in the file names? otherwise it is simple to get a list of files (
ls *fastq > all_files), then generate sublists with 100 files (split -l 100 all_files files.) and use a concatenation of files to pass to gzipOkey thank you for answer I want to ask question how to gzip 100 fastq file into one fastqz
cat *.fastq | gzip > new.fastq.gzThank you this is what I am searching for. I want to make a limited number of fastq files into fastqc.gz, what can I do for this? Should I write bash?