in reply to Re^3: multiple processes to access one file
in thread multiple processes to access one file
How about Tie::File? From what I understand, it does not store the file in memory, could be suitable?
We have a list of all possible regular expression matching a sequence header for the fastqs that we are working with. Say for a set of 4 lines, you would have:
@BLABLA:1:2:3:2 ACGTACGT... + DDDEEHFG...
So all headers are:
^@\S+:\d+:\d+:\d+:\d+\nBut headers are not of a fixed length, so how would you seek into a file if you need the byte start and end position?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: multiple processes to access one file
by BrowserUk (Patriarch) on Aug 21, 2012 at 07:29 UTC | |
|
Re^5: multiple processes to access one file
by julio_514 (Acolyte) on Aug 21, 2012 at 07:04 UTC |