How to overcome R memory error
My R script keeps returning the following error:
Error in readLines(file) : R character strings are limited to 2^31-1 bytes
Clearly, my input fasta files are too big. What is the best way around this problem. I initially thought I'd have to convert this segment of the script into python, but I was hoping to find an R-based solution first.
• 2,734 views
•
link
0 answers
No answers yet.
Log in to answer this question.
Can you explain what you are trying to do. Code alone without any comments is not appropriate as a question.
The script calculates the relative synonymous codon usage of transcript coding sequences (these are the input fasta files). The first step converts the input fasta file into character strings (which is required for the uco function) and I think that is the origin of the error.
Are you sure you are reading in a transcripts fasta? I can't think of a gene coding region being this long.