You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I receive a Memory error when attempting to create a 25mer k-mer library from a very large fasta file (9Gb). Please see the error message below.
Traceback (most recent call last):
File "/sw/Cookiecutter/1.0/cookiecutter", line 728, in
cookiecutter()
File "/sw/Cookiecutter/1.0/cookiecutter", line 677, in cookiecutter
create_kmer_file(args.input, args.output, args.length)
File "/sw/Cookiecutter/1.0/cookiecutter", line 406, in create_kmer_file
kmers[rkmer] += 1
MemoryError
Does this error mean that I am running out of memory on my server?
However, I am able to create 25mer k-mer libraries using smaller fasta files (174Mb and 56 Kb).
Should I split my large fasta file (9Gb) into several smaller fasta files when creating 25mer libraries?
10/20/15
I am re-making the libraries for my large fasta file (9Gb) on a server with more memory and I am currently using about 220Gb of memory. Is this normal? Is there a way to reduce memory usage?
The text was updated successfully, but these errors were encountered:
I was able to create a k-mer library using Jellyfish and use this file to initiate cookiecutter. However, when I ran cookiecutter separate on my reads (single end fastq, 26 million reads) I maxed out a 528Gb (RAM) server and crashed the system. Cookiecutter seems to work well using small k-mer libraries.
In order to generate a kmer library without memory problems, i used KMC2 (it took few seconds for 450 thousands reads and i wasn't bothered by the memory usage). It generated a library with twice less reads than the one generated with "make_library" however cookiecutter recruited the same amount of reads (with a very little difference). Maybe this can be a solution for the moment.
I receive a Memory error when attempting to create a 25mer k-mer library from a very large fasta file (9Gb). Please see the error message below.
Traceback (most recent call last):
File "/sw/Cookiecutter/1.0/cookiecutter", line 728, in
cookiecutter()
File "/sw/Cookiecutter/1.0/cookiecutter", line 677, in cookiecutter
create_kmer_file(args.input, args.output, args.length)
File "/sw/Cookiecutter/1.0/cookiecutter", line 406, in create_kmer_file
kmers[rkmer] += 1
MemoryError
Does this error mean that I am running out of memory on my server?
However, I am able to create 25mer k-mer libraries using smaller fasta files (174Mb and 56 Kb).
Should I split my large fasta file (9Gb) into several smaller fasta files when creating 25mer libraries?
10/20/15
I am re-making the libraries for my large fasta file (9Gb) on a server with more memory and I am currently using about 220Gb of memory. Is this normal? Is there a way to reduce memory usage?
The text was updated successfully, but these errors were encountered: