I am unable to plot a portion of my data using the plotHeatmap command. I am only encountering a problem with a single region file. I have processed many others from the using the same script without issue. I can successfully generate the matrix but I then run into a segmentation fault.
The problem region file contains ~27,000 bed entries. I've broken this file into chunks and the commands work fine.
I am happy to post my matrix somewhere if it would help the troubleshooting.
Pertinent details:
python -c "import matplotlib as mpl; print mpl.__version__"
1.5.3
Commands
computeMatrix reference-point \
-R test.bed \
-S \
/data/reddylab/projects/GGR/data/chip_seq/quantified_read_counts/iter0/BCL3.t1.ctrl_subtracted.rpm.bw \
-out test.gz \
--missingDataAsZero \
--binSize 1 \
-b 10000 \
-a 10000 \
--numberOfProcessors max
plotHeatmap \
-m test.gz \
-out test.png \
--heatmapHeight 20 \
--heatmapWidth 7 \
--refPointLabel Summit \
--plotTitle "test1" \
--sortRegions descend \
--sortUsing sum \
--colorList 'white, black' \
--dpi 100 \
--verbose
Forgot to post Python verion: Python 2.7.12
I am using deeptools 2.4.1. I can try updating matplotlib but I'm confused why only one bed file/region file fails..
Thanks
GDJ