Entering edit mode
7.6 years ago
rbronste
▴
420
Hi using the following command and either getting an empty file or an empty STDIN through sub:
convert2bed --input=WIG [--output=BED] < GSM1724233_mm9_liver_ERWT_ER_E2_RMR-32-42b.wig > GSM1724233_mm9_liver_ERWT_ER_E2_RMR-32-42b.bed
Any ideas? Thanks!
Rob.
How large a file is
GSM1724233_mm9_liver_ERWT_ER_E2_RMR-32-42b.wig
?Just under 2gb. I saw the memory options but wasn't sure about how it would handle large wig files....
I assign 24gb memory through qsub on the cluster but was just an empty STDIN.
What happens if you run
$ convert2bed --input=wig --do-not-sort < in.wig | head
?I get the following:
Conversion looks good. Looks like it's a temporary file issue, probably. Memory allocation for your conversion job doesn't need to be much higher than 2 GB. A 3 GB allocation would more than handle conversion and sorting, but you might need to specify a different temporary directory if the compute node your job goes on gets its
/tmp
folder filled up. See here for a previous discussion and options.