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 am working with data from Wheat, where the chromosomes are very large, and am using ASCIIGenome to look at peak output from MACS3. I want to add two files, the narrowPeak and summits files. When I attempt this using the following command:
ASCIIGenome -fa Wheat.v21.fa Control.bam Wheat.v21.bam narrowPeak narrowPeak.gz
I get the following message:
Warning: 37457. Skipping:
Cannot add narrowPeak.gz; skipping
I think this error is to do with the size of the files. I compressed the files using tabix as in the ASCIIGenome instructions but still get the same error
The text was updated successfully, but these errors were encountered:
Hi- thanks for reporting the issue. I'm pretty sure this is due to tabix index failing with chromosomes larger than 512MB.
One should work with CSI indexes instead for both bam and interval files (I guess this is what you have for your bam files?). Unfortunately though, I'm not sure htsjdk supports CSI index for bed files but at least it does for BAM files (and I think IGV supported csi for interval files only recently, if that makes me feel better...).
As a hack, you could convert your narrowPeaks to bam and load those instead. You could do this using, e.g. bedtools:
You would have to do the same for the annotation file. If you go through this route I would recommend using the latest versions of samtools and bedtools.
Hope this helps - I'm sorry it's only a temporary solution!
I am working with data from Wheat, where the chromosomes are very large, and am using ASCIIGenome to look at peak output from MACS3. I want to add two files, the narrowPeak and summits files. When I attempt this using the following command:
ASCIIGenome -fa Wheat.v21.fa Control.bam Wheat.v21.bam narrowPeak narrowPeak.gz
I get the following message:
Warning: 37457. Skipping:
Cannot add narrowPeak.gz; skipping
I think this error is to do with the size of the files. I compressed the files using tabix as in the ASCIIGenome instructions but still get the same error
The text was updated successfully, but these errors were encountered: