Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8f32f0a230 | |||
| 6fcf75f887 | |||
| bf1d3aff1d | |||
| 47583420aa | |||
| fd60dd3cb5 | |||
| 7cfa388197 | |||
| aae557569b | |||
| d7a7e946a3 | |||
| 8e02689e42 | |||
| efc0804b45 | |||
| 8ca3c96d25 |
+194
-51
@@ -1,70 +1,111 @@
|
||||
############################################################
|
||||
# #
|
||||
# This app has been written by Marcel Costa-García, #
|
||||
# and has reused some internal functions from sangerseqR #
|
||||
# package, including getPeaks and peakvalues #
|
||||
# #
|
||||
############################################################
|
||||
|
||||
# Load of dependencies
|
||||
|
||||
library(shiny)
|
||||
library(tidyverse)
|
||||
library(sangerseqR)
|
||||
library(msa)
|
||||
|
||||
# Define UI for application that draws a histogram
|
||||
ui <- fluidPage(
|
||||
# Define UI ---------------------------------------------------------------
|
||||
|
||||
ui <- fluidPage(
|
||||
# Application title
|
||||
titlePanel("ChromatoR"),
|
||||
|
||||
# Sidebar with a slider input for number of bins
|
||||
navbarPage("ChromatoR",
|
||||
navbarPage("Apps",
|
||||
|
||||
tabPanel("Detección de Bases",
|
||||
sidebarPanel(
|
||||
fileInput("file1", "Sube fichero ab1", multiple = FALSE),
|
||||
numericInput("thr", label = "Peak Threshold", value = 450),
|
||||
# numericInput("thr", label = "Peak Threshold", value = 450),
|
||||
uiOutput('thr'),
|
||||
numericInput("dist1", label = "1st Distance Reduction", value = 4),
|
||||
numericInput("dist2", label = "2nd Distance Reduction", value = 7),
|
||||
numericInput("ratio", label = "Ratio 2ary seq", value = 0.33),
|
||||
textInput("old", label="Referencia"),
|
||||
actionButton("calab", "Analizar")
|
||||
),
|
||||
|
||||
# Show a plot of the generated distribution
|
||||
mainPanel(
|
||||
tags$head(tags$style(HTML("pre,.wrap { white-space: pre-wrap; word-break: break-all; }"))),
|
||||
verbatimTextOutput("Primseq") %>% tagAppendAttributes(class="wrap"),
|
||||
verbatimTextOutput("align")
|
||||
)
|
||||
),
|
||||
|
||||
tabPanel("Visor de Cromatograma",
|
||||
sidebarPanel(
|
||||
numericInput("visStart", label="Inicio", value=0),
|
||||
numericInput("visWidth", label="Bases a mostrar", value=50),
|
||||
actionButton("butvis", "Mostrar")
|
||||
actionButton("butvis", "Mostrar"),
|
||||
uiOutput('tabmin'),
|
||||
uiOutput('tabmax')
|
||||
),
|
||||
mainPanel(
|
||||
plotOutput("visor",width=1000)
|
||||
plotOutput("visor",width=1000),
|
||||
tableOutput("visTab")
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
# Define server logic required to draw a histogram
|
||||
|
||||
# Define server -----------------------------------------------------------
|
||||
|
||||
server <- function(input, output) {
|
||||
# observe({
|
||||
#
|
||||
# obj<<-readsangerseq(input$file1)
|
||||
# }
|
||||
# })
|
||||
|
||||
# Define and initialize reactive variables
|
||||
obj<-reactiveValues()
|
||||
obj$aborig<-NULL
|
||||
obj_ab<-NULL
|
||||
obj$seq<-NULL
|
||||
|
||||
# File Input
|
||||
observe({
|
||||
if (!is.null(input$file1)){
|
||||
if (!is.null(input$file1)){ # This ensures that the reading is only tried when File selected
|
||||
obj$aborig<-readsangerseq(input$file1$datapath)
|
||||
}
|
||||
})
|
||||
|
||||
# This generates the threshold selector calculating the median of the peaks
|
||||
output$thr<-renderUI({
|
||||
if (!is.null(obj$aborig)){ # Only when we have a sangerseq object
|
||||
obj_ab<-obj$aborig
|
||||
getpeaks <- function(trace) {
|
||||
r <- rle(trace)
|
||||
indexes <- which(rep(diff(sign(diff(c(-Inf, r$values, -Inf)))) == -2,
|
||||
times = r$lengths))
|
||||
cbind(indexes, trace[indexes])
|
||||
}
|
||||
|
||||
Apeaks <- getpeaks(obj_ab@traceMatrix[,1])
|
||||
Cpeaks <- getpeaks(obj_ab@traceMatrix[,2])
|
||||
Gpeaks <- getpeaks(obj_ab@traceMatrix[,3])
|
||||
Tpeaks <- getpeaks(obj_ab@traceMatrix[,4])
|
||||
|
||||
peakCusMatrix<-rbind(Gpeaks,
|
||||
Apeaks,
|
||||
Tpeaks,
|
||||
Cpeaks)
|
||||
|
||||
thr_calc<-quantile(peakCusMatrix[,2], 0.5) # Percentile 50
|
||||
|
||||
numericInput("thr", label = "Peak Threshold", value = thr_calc)
|
||||
}
|
||||
})
|
||||
|
||||
# Peak detection and Base asignation
|
||||
observeEvent(input$calab, {
|
||||
if (!is.null(obj$aborig)){
|
||||
obj_ab<-obj$aborig
|
||||
## Functions
|
||||
obj_ab<-obj$aborig # We will work in a local variable
|
||||
|
||||
## Function definition
|
||||
getpeaks <- function(trace) {
|
||||
r <- rle(trace)
|
||||
indexes <- which(rep(diff(sign(diff(c(-Inf, r$values, -Inf)))) == -2,
|
||||
@@ -78,7 +119,7 @@ server <- function(input, output) {
|
||||
else return(c(max(region[,2], na.rm=TRUE), region[which.max(region[,2]),1]))
|
||||
}
|
||||
|
||||
redDiffs<-function(matrix, diff=5){
|
||||
redDiffs<-function(matrix, diff=5, max=0){
|
||||
diffs<-diff(matrix[,1])
|
||||
pos<-matrix(nrow=0, ncol=2)
|
||||
i_temp<-matrix(nrow = 0, ncol = 2)
|
||||
@@ -86,41 +127,66 @@ server <- function(input, output) {
|
||||
for(i in 1:nrow(matrix)){
|
||||
i_temp<-rbind(i_temp, matrix[i,])
|
||||
|
||||
if(diffs[i] >= diff | i == nrow(matrix)){
|
||||
if(diffs[i] >= diff | i == nrow(matrix) | nrow(i_temp) == max){
|
||||
pos<-rbind(pos, i_temp[which(i_temp[,2] == max(i_temp[,2]))[1],])
|
||||
i_temp<-matrix(nrow = 0, ncol = 2)
|
||||
}
|
||||
}
|
||||
return(pos)
|
||||
}
|
||||
|
||||
# Progress notification
|
||||
progress <- shiny::Progress$new(min=0, max=3)
|
||||
progress$set(message = "Start", value = 1)
|
||||
print("Start")
|
||||
|
||||
# Peak detection for each channel
|
||||
Apeaks <- getpeaks(obj_ab@traceMatrix[,1])
|
||||
Cpeaks <- getpeaks(obj_ab@traceMatrix[,2])
|
||||
Gpeaks <- getpeaks(obj_ab@traceMatrix[,3])
|
||||
Tpeaks <- getpeaks(obj_ab@traceMatrix[,4])
|
||||
|
||||
peakthr<-input$thr
|
||||
peakCusMatrix<-rbind(Gpeaks[Gpeaks[,2] > peakthr,],
|
||||
Apeaks[Apeaks[,2] > peakthr,],
|
||||
Tpeaks[Tpeaks[,2] > peakthr,],
|
||||
Cpeaks[Cpeaks[,2] > peakthr,])
|
||||
|
||||
peakCusMatrix<-peakCusMatrix %>% as.data.frame() %>% dplyr::rename(Int=V2) %>% group_by(indexes) %>% summarise(Int=max(Int)[1])
|
||||
# Peaks joining and filtering by defined threshold
|
||||
peakthr<-input$thr
|
||||
|
||||
filt_peaks<-function(Mpeaks, prob=0.75){
|
||||
Mpeaks_filt<-matrix(nrow = 0, ncol=2)
|
||||
means<-matrix(nrow=0, ncol=2)
|
||||
for (i in 1:nrow(Mpeaks)){
|
||||
pack<-Mpeaks[Mpeaks[,1] >= Mpeaks[i,1]-100 & Mpeaks[,1] <= Mpeaks[i,1]+100,]
|
||||
if (Mpeaks[i,2] > quantile(pack[,2], na.rm=T, probs=prob)[[1]]){
|
||||
Mpeaks_filt<-rbind(Mpeaks_filt, Mpeaks[i,])
|
||||
}
|
||||
means<-rbind(means, c(Mpeaks[i,1], quantile(pack[,2], na.rm=T, probs=prob)[[1]]))
|
||||
}
|
||||
return(list(Mpeaks_filt, means))
|
||||
}
|
||||
|
||||
|
||||
# peakCusMatrix<-rbind(Gpeaks[Gpeaks[,2] > peakthr,],
|
||||
# Apeaks[Apeaks[,2] > peakthr,],
|
||||
# Tpeaks[Tpeaks[,2] > peakthr,],
|
||||
# Cpeaks[Cpeaks[,2] > peakthr,])
|
||||
|
||||
peakCusMatrix<-filt_peaks(rbind(Gpeaks,Apeaks,Tpeaks,Cpeaks),0.75)
|
||||
peakmeans<<-peakCusMatrix[[2]]
|
||||
peakCusMatrix<-peakCusMatrix[[1]]
|
||||
|
||||
# In case there is more than one peak by position, we keep the higher
|
||||
peakCusMatrix<-peakCusMatrix %>% as.data.frame() %>%
|
||||
dplyr::rename(Int=V2) %>% group_by(indexes) %>% summarise(Int=max(Int)[1])
|
||||
peakCusMatrix<-as.matrix(peakCusMatrix)
|
||||
|
||||
# Using the custom function, we aggregate peaks defining two distance thresholds
|
||||
pos1<-redDiffs(peakCusMatrix, input$dist1)
|
||||
pos<-redDiffs(pos1, input$dist2)
|
||||
print(nrow(pos))
|
||||
|
||||
pos1<-pos1[,1]
|
||||
pos<-pos[,1]
|
||||
|
||||
pos<-redDiffs(pos1, input$dist2, max=2)[,1]
|
||||
|
||||
progress$set(message = "Peaks Detected", value = 2)
|
||||
print("Peaks Detected")
|
||||
|
||||
# This is taken from sangerseqR
|
||||
# Defining starts and stops of peak windows
|
||||
primarypeaks <- pos
|
||||
diffs <- diff(c(0,primarypeaks))
|
||||
starts <- primarypeaks - 0.5*diffs
|
||||
@@ -134,11 +200,12 @@ server <- function(input, output) {
|
||||
tempPosMatrix <- matrix(nrow=length(starts), ncol=4)
|
||||
tempAmpMatrix <- matrix(nrow=length(starts), ncol=4)
|
||||
|
||||
# Ratio min to include a second peak as secondary sequence
|
||||
ratio<-input$ratio
|
||||
|
||||
length(starts)
|
||||
|
||||
# Base detection for each peak
|
||||
for(i in 1:length(starts)) {
|
||||
# Detection of peak position and signal for each peak window
|
||||
Apeak <- peakvalues(Apeaks, starts[i], stops[i])
|
||||
Cpeak <- peakvalues(Cpeaks, starts[i], stops[i])
|
||||
Gpeak <- peakvalues(Gpeaks, starts[i], stops[i])
|
||||
@@ -147,43 +214,65 @@ server <- function(input, output) {
|
||||
is.na(Cpeak[2]) &
|
||||
is.na(Gpeak[2]) &
|
||||
is.na(Tpeak[2])) next #rare case where no peak found
|
||||
|
||||
# Signal of each channel join
|
||||
signals <- c(Apeak[1], Cpeak[1], Gpeak[1], Tpeak[1])
|
||||
tempAmpMatrix[i,] <- signals
|
||||
|
||||
# Peak position of each channel join
|
||||
positions <- c(Apeak[2], Cpeak[2], Gpeak[2], Tpeak[2])
|
||||
tempPosMatrix[i,] <- positions
|
||||
|
||||
# Ratio to the maximum by channel
|
||||
signalratios <- signals/max(signals, na.rm=TRUE)
|
||||
|
||||
# Channel order definition
|
||||
Bases <- c("A", "C", "G", "T")
|
||||
# Bases <- c("G", "A", "T", "G")
|
||||
|
||||
# Discarding bases (same order as channel) that doesn't reach the minimum ratio to max
|
||||
Bases[signalratios < ratio] <- NA
|
||||
#sort by decreasing signal strength
|
||||
|
||||
# Sort by decreasing signal strength
|
||||
Bases <- Bases[order(signals, decreasing=TRUE)]
|
||||
|
||||
# Definition of primary base and secondary base
|
||||
positions <- positions[order(signals, decreasing=TRUE)]
|
||||
if(length(Bases[!is.na(Bases)]) == 4
|
||||
if(length(Bases[!is.na(Bases)]) == 4 #if there are 4 bases or none, "N" assignation
|
||||
| length(Bases[!is.na(Bases)]) == 0) {
|
||||
primary <- c(primary, "N")
|
||||
secondary <- c(secondary, "N")
|
||||
}
|
||||
else if(length(Bases[!is.na(Bases)]) > 1) {
|
||||
else if(length(Bases[!is.na(Bases)]) > 1) { #if there is more than 1 base
|
||||
primary <- c(primary, Bases[1])
|
||||
Bases2 <- Bases[2:4]
|
||||
secondary <- c(secondary,
|
||||
mergeIUPACLetters(paste(sort(Bases2[!is.na(Bases2)]),
|
||||
collapse="")))
|
||||
}
|
||||
else {
|
||||
else { #if there is only one base, primary and secondary are the same
|
||||
primary <- c(primary, Bases[1])
|
||||
secondary <- c(secondary, Bases[1])
|
||||
}
|
||||
}
|
||||
|
||||
# Redefining sangerseq object with the new sequence and matrices
|
||||
obj_ab@peakPosMatrix <- tempPosMatrix[rowSums(!is.na(tempPosMatrix)) > 0,]
|
||||
obj_ab@peakAmpMatrix <- tempAmpMatrix[rowSums(!is.na(tempPosMatrix)) > 0,]
|
||||
obj_ab@primarySeqID <- "sangerseq package primary basecalls"
|
||||
obj_ab@primarySeq <- DNAString(paste(primary, collapse=""))
|
||||
obj_ab@secondarySeqID <- "sangerseq package secondary basecalls"
|
||||
obj_ab@secondarySeq <- DNAString(paste(secondary, collapse=""))
|
||||
|
||||
# We convert obj_ab into a global variable that other functions will be able to use
|
||||
obj_ab<<-obj_ab
|
||||
obj$seq<-T
|
||||
|
||||
# This is a triggering for other observing events
|
||||
if (is.null(obj$seq)){
|
||||
obj$seq<-1
|
||||
}else{
|
||||
obj$seq<-obj$seq+1
|
||||
}
|
||||
|
||||
print(as.character(obj_ab@primarySeq))
|
||||
progress$set(message = "Peaks Detected", value = 3)
|
||||
progress$close()
|
||||
@@ -191,41 +280,91 @@ server <- function(input, output) {
|
||||
}
|
||||
})
|
||||
|
||||
# Predicted sequence printing
|
||||
output$Primseq <- renderText({
|
||||
observeEvent(obj$seq, {})
|
||||
observeEvent(obj$seq, {}) #This is triggered when the sequence is predicted
|
||||
|
||||
if (!is.null(obj$seq)){
|
||||
print(1)
|
||||
as.character(obj_ab@primarySeq)
|
||||
}
|
||||
})
|
||||
|
||||
# Alignament with a reference sequence
|
||||
output$align <- renderText({
|
||||
observeEvent(obj$seq, {})
|
||||
observeEvent(obj$seq, {}) #This is triggered when the sequence is predicted
|
||||
|
||||
if (!is.null(obj$seq) & input$old != ""){
|
||||
print(2)
|
||||
alignament<-msaClustalW(c("Old"=toupper(input$old),"New"=obj_ab@primarySeq %>% as.character), type="dna")
|
||||
if (!is.null(obj$seq) & input$old != ""){ #Only if there is a predicted sequence AND a reference sequence defined by the user
|
||||
alignament<-msaClustalW(c("Reference"=toupper(input$old),"Predicted"=obj_ab@primarySeq %>% as.character), type="dna")
|
||||
paste(capture.output(print(alignament, show="complete")), collapse="\n")
|
||||
}
|
||||
})
|
||||
|
||||
# This is a minimal and maximal filter definition for the Visor Table
|
||||
output$tabmin<-renderUI({
|
||||
if (!is.null(obj$seq) & input$old != ""){
|
||||
numericInput("tabmin_num", label = "Mínimo en tabla", value = 0)
|
||||
}
|
||||
})
|
||||
output$tabmax<-renderUI({
|
||||
if (!is.null(obj$seq) & input$old != ""){
|
||||
alignament<-msaClustalW(c("Reference"=toupper(input$old),"Predicted"=obj_ab@primarySeq %>% as.character), type="dna")
|
||||
numericInput("tabmax_num", label = "Máximo en tabla", value = length((alignament@unmasked[2] %>% as.character() %>% strsplit(""))[[1]]))
|
||||
}
|
||||
})
|
||||
|
||||
# A table showing the predicted sequence discrepancies with a reference sequenc.
|
||||
output$visTab <- renderTable({
|
||||
observeEvent(obj$seq, {})
|
||||
|
||||
if (!is.null(obj$seq) & input$old != "" & !is.null(input$tabmin_num)){ #Only if there is a predicted sequence,a reference sequence defined by the user AND the min and max filters have been constructed
|
||||
alignament<-msaClustalW(c("Reference"=toupper(input$old),"Predicted"=obj_ab@primarySeq %>% as.character), type="dna")
|
||||
|
||||
# We get each aligned sequence separately
|
||||
pred<-(alignament@unmasked[2] %>% as.character() %>% strsplit(""))[[1]]
|
||||
ref<-(alignament@unmasked[1] %>% as.character() %>% strsplit(""))[[1]]
|
||||
cons<-pred == ref # T or F vector
|
||||
|
||||
aln<-data.frame(pred, ref, cons, PosAln=1:length(pred)) #We generate the Alignament Index
|
||||
aln<-mutate(aln, cons=case_when(
|
||||
cons == T~"",
|
||||
TRUE~"?"
|
||||
))
|
||||
aln %>% filter(pred != "-") %>% add_column("PosChrom"=1:nrow(.)) %>% #We generate the Chromatogram Index
|
||||
merge(aln, all=T) %>% arrange(PosAln) %>%
|
||||
add_column("PosChromAnterior"=c(NA,.$PosChrom[1:(nrow(.)-1)])) %>% #After merging, we assign in new column the previous index
|
||||
filter(cons == "?") %>%
|
||||
filter(PosAln >= input$tabmin_num & PosAln <= input$tabmax_num)
|
||||
}
|
||||
})
|
||||
|
||||
# Function to generate a plot object of the chromatogram with the peaks highlighted and the predicted sequence
|
||||
plotvis<-eventReactive( input$butvis, {
|
||||
if (!is.null(obj$seq)){
|
||||
print("Inicio imagen")
|
||||
|
||||
# Definition of the width (number of bases), min (start base index) and max (end base index) of the chromatogram
|
||||
width<-input$visWidth
|
||||
min<-input$visStart
|
||||
max<-min+width
|
||||
|
||||
# Defining the bases to be plotted
|
||||
let<-obj_ab@primarySeq %>% as.character %>% strsplit("")
|
||||
picks_x<-apply(obj_ab@peakPosMatrix, 1, max, na.rm=T)
|
||||
|
||||
picks<-data.frame(rows=apply(obj_ab@peakPosMatrix, 1, max, na.rm=T), Base=let[[1]], num=1:length(let[[1]])) %>%
|
||||
filter(num >= min & num <= max) #%>% mutate(rows=rows-min)
|
||||
# Defining the peak position
|
||||
peakpos<-apply(obj_ab@peakAmpMatrix,1,function(x) which(x == max(x,na.rm=T))[1]) #Getting the column position with the maximum signal by row
|
||||
picks_x<-sapply(1:length(peakpos), function(i) obj_ab@peakPosMatrix[i, peakpos[i]]) #Obtaining the position of the peaks defined by the previous line
|
||||
|
||||
# Construction of a data.frame with peak position, base letter and base index
|
||||
picks<-data.frame(rows=picks_x, Base=let[[1]], num=1:length(let[[1]])) %>%
|
||||
filter(num >= min & num <= max)
|
||||
|
||||
ranPeaks<-range(picks$rows)
|
||||
|
||||
obj$plot<-obj_ab@traceMatrix %>% as.data.frame() %>% dplyr::rename(A=V1,C=V2,G=V3,T=V4) %>% add_column(rows=1:nrow(.)) %>%
|
||||
# pmeans<-peakmeans %>% as.data.frame() %>% rename(index=1, value=2)
|
||||
# pmeans<-pmeans[]
|
||||
|
||||
obj$plot<-obj_ab@traceMatrix %>% as.data.frame() %>%
|
||||
dplyr::rename(A=V1,C=V2,G=V3,T=V4) %>% add_column(rows=1:nrow(.)) %>%
|
||||
filter(rows >= ranPeaks[1] & rows <= ranPeaks[2]) %>% gather(Base, Value, -rows) %>%
|
||||
mutate(Base=factor(Base, levels=c("G","A","T","C"))) %>%
|
||||
ggplot(aes(rows, Value))+
|
||||
@@ -234,12 +373,16 @@ server <- function(input, output) {
|
||||
geom_text(data=picks, aes(label=Base, y=3800, color=factor(Base,levels=c("G","A","T","C"))))+
|
||||
geom_text(data=picks, aes(label=num, y=4250), size=3, angle=90, hjust=0.5, vjust=0.5)+
|
||||
scale_color_manual(values=c("G"="black", "A"="#66CC00", "T"="red","C"="blue"))+
|
||||
geom_hline(yintercept = input$thr)+
|
||||
# geom_hline(yintercept = input$thr)+
|
||||
geom_point(data=peakmeans %>% as.data.frame() %>% rename(index=1, value=2) %>%
|
||||
filter(index >= ranPeaks[1] & index <= ranPeaks[2]),
|
||||
aes(index, value))+
|
||||
theme_classic()
|
||||
print("Final Imagen")
|
||||
}
|
||||
})
|
||||
|
||||
# Render of the chromatogram plot
|
||||
output$visor <- renderPlot({
|
||||
observeEvent(input$butvis, {plotvis()})
|
||||
obj$plot
|
||||
|
||||
Reference in New Issue
Block a user