parfor with BioIndexedFile?

1 view (last 30 days)
Dan Zabetakis
Dan Zabetakis on 12 Nov 2015
Answered: Walter Roberson on 13 Nov 2015
Is it possible to use parfor with a BioIndexedFile? I have tried, and Matlab seems to gag on it.
Example:
B=BioIndexedFile('fastq','P.fastq');
parfor n=1:1e6
a=read(B,n);
%some operations here
end
It doesn't seem to matter how simple the operations are. The machine runs out of memory, and doesn't seem to start the task. Perhaps it is trying to make a copy of the BioIndexedFile for each worker?

Answers (1)

Walter Roberson
Walter Roberson on 13 Nov 2015

Categories

Find more on Bioinformatics Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!