When running fastx, in particular fastxqualitystats, i am generating an error that says:
fastx_quality_stats: failed to open input file 'small.rna.fastq': Value too large for defined data type
My input file is close to 10Gb. I am running this locally on my desktop (4 GB RAM). Is this a memory error? I know I can run the fastx utilities on Galaxy. I am just hoping to speed things up by doing things locally.
Any advice is greatly appreciated.
cut your files into smaller pieces (man
split
) and see if the problem persists.I split the file and things appear to work. Looks like I will need to be running on a more powerful computer. Thanks for the help Istvan.