There is an interesting function at NCBI website called primer-blast (http://bmcbioinformatics.biomedcentral.com/articles/10.1186/1471-2105-13-134). This function infers the expected amplicons coordinates when a primer pair sequences are tested against a genomic sequence.
I would like to know if there is some function with similar objective in the Bioconductor project. Let´s say that I am a code like that:
### Loading genomic sequence
library(Biostrings)
g = readDNAStringSet("genomicseq.fa")
### Loading primer GRanges position
library(GenomicRanges)
gr <- 'chr start end strand
chr1 10 30 +
chr1 100 120 -'
gr <- read.table(text=gr, header=T)
gr <- makeGRangesFromDataFrame(gr, start.field="start", end.field="end", strand="strand")
What could I do with "g" and "gr" objects to find possible amplicons here?
