You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, is it possible to open multiple fastq files (and process) at the same time using pyfastx.Fastq? With file handle, I could do something like this:
with gzip.open(R1_fastq_file, 'r') as R1:
with gzip.open(R2_fastq_file,'r') as R2:
with open(output_path, 'w') as out:
DO SOMETHING HERE...
Is it possible to achieve the same thing using pyfastx? The situation here is I need information from both read1 and read2 fastq file, and I need to scan through a really large pair-end fastq file.
Thank you!
The text was updated successfully, but these errors were encountered:
Hi, is it possible to open multiple fastq files (and process) at the same time using pyfastx.Fastq? With file handle, I could do something like this:
Is it possible to achieve the same thing using pyfastx? The situation here is I need information from both read1 and read2 fastq file, and I need to scan through a really large pair-end fastq file.
Thank you!
The text was updated successfully, but these errors were encountered: