reg-gen icon indicating copy to clipboard operation
reg-gen copied to clipboard

Write more explicit installation and troubleshooting FAQs

Open fabio-t opened this issue 6 years ago • 4 comments

fabio-t avatar Feb 07 '19 16:02 fabio-t

Hi, thanks for developing such nice tool suite. Small comment, several tools like rgt-hint differential or rgt-hint footprinting which are using BAMs require that the BAM indexes are present. However, the error while indexes are absent are cryptic for the average user. Will be nice to check for indexes presences before any processing.

ginolhac avatar Mar 04 '19 10:03 ginolhac

Hi, thanks for developing such nice tool suite. Small comment, several tools like rgt-hint differential or rgt-hint footprinting which are using BAMs require that the BAM indexes are present. However, the error while indexes are absent are cryptic for the average user. Will be nice to check for indexes presences before any processing.

Thanks for your suggestion. We now included the Index file checking in RGT. If the file doesn't exist, RGT will generate it with Pysam.

lzj1769 avatar Mar 11 '19 10:03 lzj1769

Are there any instructions for the clone repo installation option? Pip installs often fail. It would be nice to be able to troubleshoot.

umasstr avatar Sep 23 '19 02:09 umasstr

hello, for large bam file, the index is built by command like "samtools index -c xxx.bam". The index file is called "xxx.bam.csi". The codes in reg-gen/rgt/HINT/Footprinting.py (127-130), where only search "*.bai" index files, and built bam index without option "-c". Without changing the code, change the index file suffix from ".csi" to ".bai" could pass the index checking step.

ODream avatar Jul 30 '20 02:07 ODream