MikkelSchubert / adapterremoval

AdapterRemoval v2 - rapid adapter trimming, identification, and read merging
http://adapterremoval.readthedocs.io/
GNU General Public License v3.0
102 stars 23 forks source link

AdapterRemoval doesn't work with paired end reads >1GB #37

Closed Giorgia94 closed 5 years ago

Giorgia94 commented 5 years ago

Hi. I'm working on aDNA and I have launched AdapterRemoval on raw reads (paired end reads).

This is the tipe of pipeline I used: nohup directory/adapterremoval-2.2.4/build/AdapterRemoval --threads 8 --identify-adapters --file1 namefile1_r1.txt.gz --file2 namefile2_r2.txt.gz &

I does work with file <1GB, but I noticed that it stops running with files >1GB without error messages. Does anyone know why? Is it really a problem related to file dimension? It seems weird to me.

Thanks

MikkelSchubert commented 5 years ago

Hi,

There shouldn't be limitations on the input file sizes and I have regularly used AdapterRemoval on files that were tens of GB in size.

AdapterRemoval should print error messages on failures barring a SIGSEV or being forcibly terminated by the OS, so you can try checking dmesg or running it in the foreground instead of using nohup (use screen or tmux if you need to disconnect while it is running).

Cheers, Mikkel

On Thu, May 2, 2019 at 11:00 AM Giorgia94 notifications@github.com wrote:

Hi. I'm working on aDNA and I have launched AdapterRemoval on raw reads (paired end reads).

This is the tipe of pipeline I used: nohup directory/adapterremoval-2.2.4/build/AdapterRemoval --threads 8 --identify-adapters --file1 namefile1_r1.txt.gz --file2 namefile2_r2.txt.gz &

I does work with file <1GB, but I noticed that it stops running with files

1GB without error messages. Does anyone know why? Is it really a problem related to file dimension? It seems weird to me.

Thanks

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/MikkelSchubert/adapterremoval/issues/37, or mute the thread https://github.com/notifications/unsubscribe-auth/AASMY2YA7MTQYT5KHJNML7DPTKUSPANCNFSM4HJ4QS6A .

Giorgia94 commented 5 years ago

Thank you so much for your help! It works.

Giorgia