Polyadenylation-PAS sites APAlyzer
1
0
Entering edit mode
12 days ago
aj123 ▴ 140

Im having difficulty while running the APAlyzer software package on paired-end reads. Has anyone used this software before?

R package bioinformatics • 322 views
ADD COMMENT
0
Entering edit mode

Im having difficulty

That is not enough information for anyone to help. Please describe what kind of difficulty. Have you checked program vignette, if one is available.

ADD REPLY
0
Entering edit mode
10 days ago

It looks like APAlyzer hardcodes singleEnd = TRUE in its internal call to featureCounts (see line 37 of APAlyzer.R in the source code). This means that it is currently set up to treat all input BAM files as single-end, regardless of whether your reads are paired-end.

There is an open issue about this on GitHub dating back to 2022: How to run PASEXP_3UTR with paired end reads? - unfortunately, it remains unresolved with no response from the maintainers.

As a workaround, you could fork the repository and modify the code yourself to set singleEnd = FALSE (or make it a user-configurable parameter), then reinstall the package locally via devtools::install_github() or similar. Here's a quick example of what the modified line might look like in APAlyzer.R:

count <- featureCounts(files = flS, annot.ext = UTRdb, isGTFAnnotationFile = FALSE, nthreads = nthreads, isPairedEnd = TRUE, strandSpecific = StrandtypeN, primaryOnly = TRUE, countMultiMappingReads = FALSE)

Be sure to test this carefully, as changing it could affect how overlaps are handled for paired reads.

If that's not feasible, you may want to reach out to the authors directly via the GitHub issue or email (check the Bioconductor page for contact info). In the meantime, please share the exact error message you're seeing and your code / command - that may help pinpoint if there's another issue at play.

Have you confirmed that your BAM files are properly sorted and indexed? Also, the vignette has some examples for basic usage: APAlyzer Vignette

ADD COMMENT

Login before adding your answer.

Traffic: 6067 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6