Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: concatenate/stitch multiple GZip fastq files and output combined gzip file

by 1nickt (Canon)
on Dec 02, 2015 at 16:05 UTC ( [id://1149169]=note: print w/replies, xml ) Need Help??


in reply to concatenate/stitch multiple GZip fastq files and output combined gzip file

This:

while (<IN>) { while ( my $line = IN ) { print $outputfile $line ; } }
should be this:
while ( my $line = <IN> ) { print $outputfile $line ; }

But you should post the error you are getting here to give the Monks a chance to help without having to try to get your code to run.

The way forward always starts with a minimal test.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1149169]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-18 22:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found