Hi, guys. I'm a beginer of pysam. I got some body's code.
import pysam
cn = pysam.view("-F4","-c","./a.bam");
print cn;
when I use pysam 0.7.7, it works well. However, when I use pysam 0.9.1.4, it returns "Segmentation Fault".
Actually, I don't know those code's meaning. So, I just tested below code by myself.
import pysam
cn = pysam.view("./a.bam");
print cn;
And the result is "MemoryError".
Could anybody give me any examples for testing my pysam 0.9.1.4?
I really don't know what problem is.
I want to know whether I missed something on installation or my pysam(0.9.1.4) has bug something..etc.
Please save my code..
What do you try to achieve?