List of sequences to gene symbol
Hi!
I have list of probes matching genes. I have already written an R code using BSgenome.Hsapiens.UCSC.hg19, TxDb.Hsapiens.UCSC.hg19.knownGene and org.Hs.eg.db. The code is working fine, however it takeas a long time to check all probes. What are other possible ways to solve this problem?
• 161 views
•
link
0 answers
No answers yet.
Log in to answer this question.
Where/what are the probes from? What does your code look like?
loop over probes; loop over chromosome
Probes contain:
GAGATAACTAGAACAGTGTCCCTCCCCTTTTATAACCTGTGTTTTTAGATTTCAAAAAGA CTAACTGTCAAACAAAGATGGGCTAATTAAACGGATGCCAACTAATCGGAAAACTTCTGG CCAGAAGCTCCAGCATGGTCCACCTACCAGAAGCTCCAGCATGATTTACCCATGAGTAGC TAAGTACGGTAATGCAAGAAGGTGCAGCAGGCGTAGTGCATTACAGCAACACTGAAAAAC TATGAGAGATGAAGAGATAAGGTCTAACTGTTACCTGGGCTGAACCCTTGGACTTCTAGG CAGTAGCGAGTATTTACTAAGTACTTTCTATTTGCGAGGCCCTGATAAAAGTACTGTCCT ~ 5600
I am not familiar with RNAseq but I guess one can use HISAT2 or Rsubread to perform this quickly.
Suggesting an alternative. If all you are doing is checking where probes map on
hg19you could useblat(which is perfectly suited for this purpose). You can download it here.Yeah, definitely second this idea.
Thank you @genomax.