I have a huge dna sequence saved in a .txt file of size 140GB that I would like to open using a txt file editor. Notepad, Python, R don't allow to open such a file. Is there a dedicated text file editor to open large files?
I am currently using this code in Python to open the 140GB large file .txt file:
path = open("my_file_path\my_140GB_file.txt", "r")
file = path.read()
print(file)
The error message is MemoryError
referring to file = path.read()