fiberseq / fibertools-rs

Tools for fiberseq data written in rust.
https://fiberseq.github.io/fibertools/fibertools.html
42 stars 5 forks source link

ft center not working on K.marxianus data #48

Closed shedou35 closed 7 months ago

shedou35 commented 7 months ago

Hi Mitchell, The ft center command gives an empty file when I use it on Fiber-seq data generated in the yeast K.marxianus. I tested the ft center command alone and it only gives the column names.

OS: [Linux]

Thank you very much for your help!

mrvollger commented 7 months ago

Your bam files have no reads that overlap these regions. This can be tested like:

$ samtools view -c -M -L Kmarxianus_CEN_center.bed PS00527.phased.bam
0

I would check your bed file to make sure it is correct, make sure the bam file is aligned to the right genome, and finally, do a coverage analysis of the bam to see if you are getting the data you expected.

Good luck, Mitchell