Tuesday, July 7, 2015

7 7 2015 Using R to generate expression values and compare replicates from qPCR

Today I needed to find a quick efficient way to compare replicate Ct values using R. I've been working recently at taking raw fluorescence data from my qPCR runs and independently generating efficiencies and Ct values for analysis. The first thing to note is all the data below was generated on the BioRAD CFX programming. To export it properly, I had to remove the baseline subtraction which is default for the BioRad to produce. After exporting it, the rest of the analysis is done in R so as to cleanly compare data. The script below was written specifically to deal with the default CSV export from the BioRAD CFX program. If a different thermocycler/program is used the read in and manipulation of the CSV will most likely have to be changed to accomodate whatever format is exported.  repcomparison.R
#Load in required packages for functions below
require(qpcR)
## Loading required package: qpcR
## Loading required package: MASS
## Loading required package: minpack.lm
## Loading required package: rgl
## Loading required package: robustbase
## Loading required package: Matrix
require(plyr)
## Loading required package: plyr
require(ggplot2)
## Loading required package: ggplot2
require(splitstackshape)
## Loading required package: splitstackshape
## Loading required package: data.table
#Read in raw fluorescence data from 1st Actin replicate
act3<-read.csv("Actin3rawfluoro.csv", header = T)
#Remove blank first column entitled "X"
act3$X<-NULL
#Rename columns so that qpcR package and appropriately handle the data
act3<-rename(act3, c("Cycle" = "Cycles", "A1" = "H_C_1", "A2" = "N_C_1",
                       "A3"= "S_C_1", "A4"="H_T_1", "A5"="N_T_1","A6"="S_T_1",
                       "A7"="NT_C_1","B1" = "H_C_2", "B2" = "N_C_2","B3"= "S_C_2",
                       "B4"="H_T_2", "B5"="N_T_2", "B6"="S_T_2","B7"="NT_C_2",
                       "C1" = "H_C_3", "C2" = "N_C_3","C3"= "S_C_3","C4"="H_T_3",
                       "C5"="N_T_3", "C6"="S_T_3", "C7"="NT_C_3","D1" = "H_C_4",
                       "D2" = "N_C_4","D3"= "S_C_4", "D4"="H_T_4", "D5"="N_T_4",
                       "D6"="S_T_4", "D7"="NT_C_4","E1" = "H_C_5", "E2" = "N_C_5",
                       "E3"= "S_C_5", "E4"="H_T_5", "E5"="N_T_5", "E6"="S_T_5",
                       "F1" = "H_C_6", "F2" = "N_C_6","F3"= "S_C_6", "F4"="H_T_6",
                       "F5"="N_T_6", "F6"="S_T_6","G1" = "H_C_7", "G2" = "N_C_7",
                       "G3"= "S_C_7", "G4"="H_T_7", "G5"="N_T_7", "G6"="S_T_7",
                       "H1" = "H_C_8", "H2" = "N_C_8","H3"= "S_C_8", "H4"="H_T_8",
                       "H5"="N_T_8", "H6"="S_T_8"))

#Run data through pcrbatch in qpcR package which analyzes fluorescence and produces efficiency and cycle threshold values
act3ct<-pcrbatch(act3, fluo=NULL)
## Making model for H_C_1 (l4)
##  => Fitting passed...
## 
## Making model for N_C_1 (l4)
##  => Fitting passed...
## 
## Making model for S_C_1 (l4)
##  => Fitting passed...
## 
## Making model for H_T_1 (l4)
##  => Fitting passed...
## 
## Making model for N_T_1 (l4)
##  => Fitting passed...
## 
## Making model for S_T_1 (l4)
##  => Fitting passed...
## 
## Making model for NT_C_1 (l4)
##  => Fitting passed...
## 
## Making model for H_C_2 (l4)
##  => Fitting passed...
## 
## Making model for N_C_2 (l4)
##  => Fitting passed...
## 
## Making model for S_C_2 (l4)
##  => Fitting passed...
## 
## Making model for H_T_2 (l4)
##  => Fitting passed...
## 
## Making model for N_T_2 (l4)
##  => Fitting passed...
## 
## Making model for S_T_2 (l4)
##  => Fitting passed...
## 
## Making model for NT_C_2 (l4)
##  => Fitting passed...
## 
## Making model for H_C_3 (l4)
##  => Fitting passed...
## 
## Making model for N_C_3 (l4)
##  => Fitting passed...
## 
## Making model for S_C_3 (l4)
##  => Fitting passed...
## 
## Making model for H_T_3 (l4)
##  => Fitting passed...
## 
## Making model for N_T_3 (l4)
##  => Fitting passed...
## 
## Making model for S_T_3 (l4)
##  => Fitting passed...
## 
## Making model for NT_C_3 (l4)
##  => Fitting passed...
## 
## Making model for H_C_4 (l4)
##  => Fitting passed...
## 
## Making model for N_C_4 (l4)
##  => Fitting passed...
## 
## Making model for S_C_4 (l4)
##  => Fitting passed...
## 
## Making model for H_T_4 (l4)
##  => Fitting passed...
## 
## Making model for N_T_4 (l4)
##  => Fitting passed...
## 
## Making model for S_T_4 (l4)
##  => Fitting passed...
## 
## Making model for NT_C_4 (l4)
##  => Fitting passed...
## 
## Making model for H_C_5 (l4)
##  => Fitting passed...
## 
## Making model for N_C_5 (l4)
##  => Fitting passed...
## 
## Making model for S_C_5 (l4)
##  => Fitting passed...
## 
## Making model for H_T_5 (l4)
##  => Fitting passed...
## 
## Making model for N_T_5 (l4)
##  => Fitting passed...
## 
## Making model for S_T_5 (l4)
##  => Fitting passed...
## 
## Making model for H_C_6 (l4)
##  => Fitting passed...
## 
## Making model for N_C_6 (l4)
##  => Fitting passed...
## 
## Making model for S_C_6 (l4)
##  => Fitting passed...
## 
## Making model for H_T_6 (l4)
##  => Fitting passed...
## 
## Making model for N_T_6 (l4)
##  => Fitting passed...
## 
## Making model for S_T_6 (l4)
##  => Fitting passed...
## 
## Making model for H_C_7 (l4)
##  => Fitting passed...
## 
## Making model for N_C_7 (l4)
##  => Fitting passed...
## 
## Making model for S_C_7 (l4)
##  => Fitting passed...
## 
## Making model for H_T_7 (l4)
##  => Fitting passed...
## 
## Making model for N_T_7 (l4)
##  => Fitting passed...
## 
## Making model for S_T_7 (l4)
##  => Fitting passed...
## 
## Making model for H_C_8 (l4)
##  => Fitting passed...
## 
## Making model for N_C_8 (l4)
##  => Fitting passed...
## 
## Making model for S_C_8 (l4)
##  => Fitting passed...
## 
## Making model for H_T_8 (l4)
##  => Fitting passed...
## 
## Making model for N_T_8 (l4)
##  => Fitting passed...
## 
## Making model for S_T_8 (l4)
##  => Fitting passed...
## 
## Calculating delta of first/second derivative maxima...
## .........10.........20.........30.........40.........50
## ..
## Analyzing H_C_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing NT_C_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing NT_C_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing NT_C_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing NT_C_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
#pcrbatch creates a file with each sample as an individual column in the dataframe. The problem with this is
#that I want to compare all the Ct (labelled sig.cpD2) and generate expression data for them but these values have to be
#in individual columns. To do this I must transpose the data and set the first row as the column names.
act3res<-setNames(data.frame(t(act3ct)),act3ct[,1])
#Now I must remove the first row as it is a duplicate and will cause errors with future analysis
act3res<-act3res[-1,]

#since the sample names are now in the first column the column title is row.names. This makes analys hard based on the ability to call the first column.
#to eliminate this issue, I copied the first column into a new column called "Names"
act3res$Names<-rownames(act3res)

#Since each sample name contains information such as Population, Treatment, and Sample Number I want to separate out these factors
#into new columns so that I can run future analysis based on population, treatment, or both. Also note the "drop = F" this is so the original names column remains.
act3res2<-cSplit_f(act3res, splitCols=c("Names"), sep="_", drop = F)

#After splitting the names column into three new columns I need to rename them appropriately. 
act3res2<-rename(act3res2, c("Names_1"="Pop", "Names_2"="Treat", "Names_3"="Sample"))

#I also create a column with the target gene name. This isn't used in this analysis but will be helpful for future work.
act3res2$Gene<-rep("Actin", length(act3res2))

#In transposing the data frame, the column entries became factors which cannot be used for equations.
#to fix this, I set the entries for sig.eff (efficiency) and sig.cpD2 (Ct value) to numeric. Be aware, without the as.character function the factors will be transformed inappropriately.
act3res2$sig.eff<-as.numeric(as.character(act3res2$sig.eff))
act3res2$sig.cpD2<-as.numeric(as.character(act3res2$sig.cpD2))

#Now I plot the Ct values to see how they align without converting them to expression.
ggplot(act3res2, aes(x=Names,y=sig.cpD2, fill=Pop))+geom_bar(stat="identity")

#Now I want to get expression information from my data set. qpcR has a way of doing this but its complicated and I'm not comfortable using it.
#Luckily there is an equation I can use to do it. The equation is expression = 1/(1+efficiency)^Ctvalue. I tried multiple ways to get this to work in R
#but it doesn't handle the complicated equation easily.
#To work around this, I created a function in R to run the equation and produce an outcome. x = efficiency argument, y=Ctvalue argument
expr<-function(x,y){
  newVar<-(1+x)^y
  1/newVar
}

#Now I run the data through the function and produce a useful expression value
act3res2$expression<-expr(act3res2$sig.eff, act3res2$sig.cpD2)

#Graphing the expression values is a good way to examine the data quickly for errors that might have occurred. 
ggplot(act3res2, aes(x=Names,y=expression, fill=Pop))+geom_bar(stat="identity")

#Before I'm able to compare the replicates I need to process the raw fluorescence from the second Actin run.
#To do this I perform all the same steps as the previous replicate.
act4<-read.csv("Actin4rawfluoro.csv", header = T)
act4$X<-NULL
act4<-rename(act4, c("Cycle" = "Cycles", "A1" = "H_C_1", "A2" = "N_C_1",
                     "A3"= "S_C_1", "A4"="H_T_1", "A5"="N_T_1","A6"="S_T_1",
                     "A7"="NT_C_1","B1" = "H_C_2", "B2" = "N_C_2","B3"= "S_C_2",
                     "B4"="H_T_2", "B5"="N_T_2", "B6"="S_T_2","B7"="NT_C_2",
                     "C1" = "H_C_3", "C2" = "N_C_3","C3"= "S_C_3","C4"="H_T_3",
                     "C5"="N_T_3", "C6"="S_T_3", "C7"="NT_C_3","D1" = "H_C_4",
                     "D2" = "N_C_4","D3"= "S_C_4", "D4"="H_T_4", "D5"="N_T_4",
                     "D6"="S_T_4", "D7"="NT_C_4","E1" = "H_C_5", "E2" = "N_C_5",
                     "E3"= "S_C_5", "E4"="H_T_5", "E5"="N_T_5", "E6"="S_T_5",
                     "F1" = "H_C_6", "F2" = "N_C_6","F3"= "S_C_6", "F4"="H_T_6",
                     "F5"="N_T_6", "F6"="S_T_6","G1" = "H_C_7", "G2" = "N_C_7",
                     "G3"= "S_C_7", "G4"="H_T_7", "G5"="N_T_7", "G6"="S_T_7",
                     "H1" = "H_C_8", "H2" = "N_C_8","H3"= "S_C_8", "H4"="H_T_8",
                     "H5"="N_T_8", "H6"="S_T_8"))

act4ct<-pcrbatch(act4, fluo=NULL)

## Making model for H_C_1 (l4)
##  => Fitting passed...
## 
## Making model for N_C_1 (l4)
##  => Fitting passed...
## 
## Making model for S_C_1 (l4)
##  => Fitting passed...
## 
## Making model for H_T_1 (l4)
##  => Fitting passed...
## 
## Making model for N_T_1 (l4)
##  => Fitting passed...
## 
## Making model for S_T_1 (l4)
##  => Fitting passed...
## 
## Making model for NT_C_1 (l4)
##  => Fitting passed...
## 
## Making model for H_C_2 (l4)
##  => Fitting passed...
## 
## Making model for N_C_2 (l4)
##  => Fitting passed...
## 
## Making model for S_C_2 (l4)
##  => Fitting passed...
## 
## Making model for H_T_2 (l4)
##  => Fitting passed...
## 
## Making model for N_T_2 (l4)
##  => Fitting passed...
## 
## Making model for S_T_2 (l4)
##  => Fitting passed...
## 
## Making model for NT_C_2 (l4)
##  => Fitting failed. Tagging name of NT_C_2...
## 
## Making model for H_C_3 (l4)
##  => Fitting passed...
## 
## Making model for N_C_3 (l4)
##  => Fitting passed...
## 
## Making model for S_C_3 (l4)
##  => Fitting passed...
## 
## Making model for H_T_3 (l4)
##  => Fitting passed...
## 
## Making model for N_T_3 (l4)
##  => Fitting passed...
## 
## Making model for S_T_3 (l4)
##  => Fitting passed...
## 
## Making model for NT_C_3 (l4)
##  => Fitting failed. Tagging name of NT_C_3...
## 
## Making model for H_C_4 (l4)
##  => Fitting passed...
## 
## Making model for N_C_4 (l4)
##  => Fitting passed...
## 
## Making model for S_C_4 (l4)
##  => Fitting passed...
## 
## Making model for H_T_4 (l4)
##  => Fitting passed...
## 
## Making model for N_T_4 (l4)
##  => Fitting passed...
## 
## Making model for S_T_4 (l4)
##  => Fitting passed...
## 
## Making model for NT_C_4 (l4)
##  => Fitting failed. Tagging name of NT_C_4...
## 
## Making model for H_C_5 (l4)
##  => Fitting passed...
## 
## Making model for N_C_5 (l4)
##  => Fitting passed...
## 
## Making model for S_C_5 (l4)
##  => Fitting passed...
## 
## Making model for H_T_5 (l4)
##  => Fitting passed...
## 
## Making model for N_T_5 (l4)
##  => Fitting passed...
## 
## Making model for S_T_5 (l4)
##  => Fitting passed...
## 
## Making model for H_C_6 (l4)
##  => Fitting passed...
## 
## Making model for N_C_6 (l4)
##  => Fitting passed...
## 
## Making model for S_C_6 (l4)
##  => Fitting passed...
## 
## Making model for H_T_6 (l4)
##  => Fitting passed...
## 
## Making model for N_T_6 (l4)
##  => Fitting passed...
## 
## Making model for S_T_6 (l4)
##  => Fitting passed...
## 
## Making model for H_C_7 (l4)
##  => Fitting passed...
## 
## Making model for N_C_7 (l4)
##  => Fitting passed...
## 
## Making model for S_C_7 (l4)
##  => Fitting passed...
## 
## Making model for H_T_7 (l4)
##  => Fitting passed...
## 
## Making model for N_T_7 (l4)
##  => Fitting passed...
## 
## Making model for S_T_7 (l4)
##  => Fitting passed...
## 
## Making model for H_C_8 (l4)
##  => Fitting passed...
## 
## Making model for N_C_8 (l4)
##  => Fitting passed...
## 
## Making model for S_C_8 (l4)
##  => Fitting passed...
## 
## Making model for H_T_8 (l4)
##  => Fitting passed...
## 
## Making model for N_T_8 (l4)
##  => Fitting passed...
## 
## Making model for S_T_8 (l4)
##  => Fitting passed...
## 
## Calculating delta of first/second derivative maxima...
## .........10.........20.........30.........40.........50
## ..
## Analyzing H_C_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing NT_C_1 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_2 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing *NT_C_2* ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_3 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing *NT_C_3* ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_4 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing *NT_C_4* ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_5 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_6 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_7 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_C_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_C_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_C_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing H_T_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing N_T_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
## 
## Analyzing S_T_8 ...
##   Calculating 'eff' and 'ct' from sigmoidal model...
##   Using window-of-linearity...
##   Fitting exponential model...
##   Using linear regression of efficiency (LRE)...
act4res<-setNames(data.frame(t(act4ct)),act4ct[,1])
act4res<-act4res[-1,]

act4res$Names<-rownames(act4res)

act4res2<-cSplit_f(act4res, splitCols=c("Names"), sep="_", drop = F)

act4res2<-rename(act4res2, c("Names_1"="Pop", "Names_2"="Treat", "Names_3"="Sample"))

act4res2$Gene<-rep("Actin", length(act4res2))

act4res2$sig.eff<-as.numeric(as.character(act4res2$sig.eff))
act4res2$sig.cpD2<-as.numeric(as.character(act4res2$sig.cpD2))

ggplot(act4res2, aes(x=Names,y=sig.cpD2, fill=Pop))+geom_bar(stat="identity")

expr<-function(x,y){
  newVar<-(1+x)^y
  1/newVar
}

act4res2$expression<-expr(act4res2$sig.eff, act4res2$sig.cpD2)

ggplot(act4res2, aes(x=Names,y=expression, fill=Pop))+geom_bar(stat="identity")

#Now that I have Ct values, efficiencies and expression values for both replicates I can create a table of the differences between reps.
#To do this I create a data frame with a single formula that creates a column of values generated by subtracting the first run from the second.
repcomp<-as.data.frame(act3res2$sig.cpD2-act4res2$sig.cpD2)

#Now I need to add some Names for the samples to use with ggplot.Since the names column contains all the relevant information
#I copy only that column and run the split function on it again as well as the rename function. 
repcomp$Names<-act3res2$Names
repcomp<-cSplit_f(repcomp, splitCols=c("Names"), sep="_", drop = F)

#To better address the difference column in ggplot I need to rename it something simple and short. 
repcomp<-rename(repcomp, c("act3res2$sig.cpD2 - act4res2$sig.cpD2"="rep.diff", "Names_1"="Pop", "Names_2"="Treat", "Names_3"="Sample"))

#Now I just run the data through ggplot to generate a bar graph exploring the differences between the two replicate in terms of Ct values.
ggplot(repcomp, aes(x=Names, y=rep.diff, fill=Pop))+geom_bar(stat="identity")



The results are a little discouraging as the replicates show a maximum a 4 Ct difference which is greater than a 10 fold difference in expression values. I'm running another set of replicates today but have slightly changed the protocol again to hopefully optimize it for tight replicate values. 

7 6 2015 Actin 4 qPCR

After noting some significant discrepancies between replicates last week we decided to change the protocol to better help optimize the process and make the data more consistent between runs. Today I'm running two replicates of Actin but this post will only cover the second one. You can read about the other run here

Primers:

1505Ol_Act_FGACCAGCCAAATCCAGACGABC6/13/2012205560O.luridaActin, adductor muscle
1504Ol_Act_RCGGTCGTACCACTGGTATCG6/13/2012206060O.luridaActin, adductor muscle 

To help with optimization I made a 1:9 dilution of cDNA so that pipette error would not affect the concentrations as much as it has previously. 

Reagent Table:
VolumeReactions X58
Ssofast Evagreen MM10580
FWD Primer0.529
REV Primer0.529
1:9 cDNA9
  1. Added reagents from greatest to least volume
  2. Vortexed
  3. Centrifuged briefly
  4. Pipetted 11 ul Master Mix to each tube
  5. Pipetted 9 ul of 1:9 cDNA each column using a channel pipetter
  6. Centrifuged plate at 2000 rpm for 1 minute
  7. Ran Program Below
Program:
StepTemperatureTime
Initiation95 C10 min
Elongation95 C30 sec
60 C1 min
Read
72 C30 sec
Read
Repeat Elongation 39 times
Termination95 C1 min
55 C1 sec
Melt Curve Manual ramp 0.2C per sec Read 0.5 C55 - 95 C30 sec
21 C10 min
End
Plate Layout:
1234567
DNased 42215 HC1DNased 42215 NC1DNased 42215 SC1DNased 42215 HT1 1DNased 42215 NT1 1DNased 42215 ST1 1NTC
DNased 42215 HC2DNased 42215 NC2DNased 42215 SC2DNased 42215 HT1 2DNased 42215 NT1 2DNased 42215 ST1 2NTC
DNased 42215 HC3DNased 42215 NC3DNased 42215 SC3DNased 42215 HT1 3DNased 42215 NT1 3DNased 42215 ST1 3NTC
DNased 42215 HC4DNased 42215 NC4DNased 42215 SC4DNased 42215 HT1 4DNased 42215 NT1 4DNased 42215 ST1 4NTC
DNased 42215 HC5DNased 42215 NC5DNased 42215 SC5DNased 42215 HT1 5DNased 42215 NT1 5DNased 42215 ST1 5
DNased 42215 HC6DNased 42215 NC6DNased 42215 SC6DNased 42215 HT1 6DNased 42215 NT1 6DNased 42215 ST1 6
DNased 42215 HC7DNased 42215 NC7DNased 42215 SC7DNased 42215 HT1 7DNased 42215 NT1 7DNased 42215 ST1 7
DNased 42215 HC8DNased 42215 NC8DNased 42215 SC8DNased 42215 HT1 8DNased 42215 NT1 8DNased 42215 ST1 8
Results:

All Samples
NTCs


The samples look good from this run. The appear to both have the same primer dimer issue in the NTCs and the runs look roughly similar. Now I need to compare the two runs with each other to see how closely the Ct's match. I'll post a work up soon on how I did this in R. 

Monday, July 6, 2015

7 6 2015 Actin qPCR rerun

After noting some significant discrepancies between replicates last week we decided to change the protocol to better help optimize the process and make the data more consistent between runs. Today I'm running two replicates of Actin but this post will only cover the first one.

Primers:
1505Ol_Act_FGACCAGCCAAATCCAGACGABC6/13/2012205560O.luridaActin, adductor muscle
1504Ol_Act_RCGGTCGTACCACTGGTATCG6/13/2012206060O.luridaActin, adductor muscle 

To help with optimization I made a 1:9 dilution of cDNA so that pipette error would not affect the concentrations as much as it has previously. 

Reagent Table:
VolumeReactions X58
Ssofast Evagreen MM 10580
FWD Primer0.529
REV Primer0.529
1:9 cDNA9
  1. Added reagents from greatest to least volume
  2. Vortexed
  3. Centrifuged briefly
  4. Pipetted 11 ul Master Mix to each tube
  5. Pipetted 9 ul of 1:9 cDNA each column using a channel pipetter
  6. Centrifuged plate at 2000 rpm for 1 minute
  7. Ran Program Below
Program:
StepTemperatureTime
Initiation95 C10 min
Elongation95 C30 sec
60 C1 min
Read
72 C30 sec
Read
Repeat Elongation 39 times
Termination95 C1 min
55 C1 sec
Melt Curve Manual ramp 0.2C per sec Read 0.5 C55 - 95 C30 sec
21 C10 min
End
Plate Layout:
1234567
DNased 42215 HC1DNased 42215 NC1DNased 42215 SC1DNased 42215 HT1 1DNased 42215 NT1 1DNased 42215 ST1 1NTC
DNased 42215 HC2DNased 42215 NC2DNased 42215 SC2DNased 42215 HT1 2DNased 42215 NT1 2DNased 42215 ST1 2NTC
DNased 42215 HC3DNased 42215 NC3DNased 42215 SC3DNased 42215 HT1 3DNased 42215 NT1 3DNased 42215 ST1 3NTC
DNased 42215 HC4DNased 42215 NC4DNased 42215 SC4DNased 42215 HT1 4DNased 42215 NT1 4DNased 42215 ST1 4NTC
DNased 42215 HC5DNased 42215 NC5DNased 42215 SC5DNased 42215 HT1 5DNased 42215 NT1 5DNased 42215 ST1 5
DNased 42215 HC6DNased 42215 NC6DNased 42215 SC6DNased 42215 HT1 6DNased 42215 NT1 6DNased 42215 ST1 6
DNased 42215 HC7DNased 42215 NC7DNased 42215 SC7DNased 42215 HT1 7DNased 42215 NT1 7DNased 42215 ST1 7
DNased 42215 HC8DNased 42215 NC8DNased 42215 SC8DNased 42215 HT1 8DNased 42215 NT1 8DNased 42215 ST1 8
Results:

All Samples
NTCs

The samples look good. The NTCs did have amplification but it appears that it was primer dimers and nothing else. I'm running another plate over night and I'll post about it tomorrow as well as how the two replicates match. 

You can see the raw data file here.

July 2015 Goals

These are coming in a few days late due to the holiday. Before I get to what this month's goals are lets look at how I did last month.

June 2015 Goals
  1. Run qPCR tests with chosen flanking primers and sequence expression
  2. Run qPCR tests with chosen primers to reflect populations level differences
  3. Edit Materials/Methods
  4. Write Results
  5. Have committee meeting 
  6. Write Intro/Discussion
  7. Get Married!

How I did:

  1. I did run most of the flanking primers and sequenced them. Some of the sequencing failed so I had to re run them but I finished that as well. 
  2. I ran the qPCR with several chosen primers multiple times. The data hasn't been as solid as we would like so we are attempting to fine tune the qPCR process to get more consistent data. 
  3. I failed to really edit Materials/Methods
  4. I didn't have any solid results to write up
  5. I did however have a committee meeting where we discussed my defense date. It is tentatively set based on if I can produce useful results and write them up this month. 
  6. I didn't write an intro or discussion
  7. I did get married successfully. 
Overall I see that I got caught up on the lab work aspects of my goals. I was also consumed with figuring out the best way to analyze the data which took up a lot of time but its necessary to be able to write proper results. Overall I need to get my act together this month if I stand a chance of meeting my deadlines for next month. 

July 2015 Goals
  1. Finalize analysis script for R to produce expression data and graphs. 
    1. Due by 7/9
  2. Edit Mat/Meth
    1. Due by 7/13
  3. Edit Chapter 1
    1. Due by 7/15
  4. Produce Graphs 
    1. Due by 7/17
  5. Re-run a host of qPCR with fine tuned protocol to produce consistent data. 
    1. Due by 7/20
  6. Write Results
    1. Due by 7/20
  7. Write Intro/Discussion
    1. Due by 7/23
  8. Complete Thesis Rough Draft
    1. Due by 7/29

Thursday, July 2, 2015

7 1 2015 TLR rep qPCR

Yesterday I reran the TLR replicate to help alleviate the NTC deviancy that we saw with an earlier replicate run.

Primers:
1630TLR2.1_FWDACAAAGATTCCACCCGGCAAJH5/21/20152055O.luridaToll-like receptor 2 type-1Q9DD78
1629TLR2.1_REVACACCAACGACAGGAAGTGGJH5/21/20152055O.luridaToll-like receptor 2 type-1Q9DD78

Reagent Table:
VolumeReactions X58
Ssofast Evagreen MM10580
FWD Primer0.529
REV Primer0.529
Nuclease Free H2O8464
cDNA1
  1. Added reagents from greatest to least volume
  2. Vortexed
  3. Centrifuged briefly
  4. Pipetted 19 ul Master Mix to each tube
  5. Pipetted appropriate cDNA sample to each tube
  6. Centrifuged plate at 2000 rpm for 1 minute
  7. Ran Program Below
Program:
StepTemperatureTime
Initiation95 C10 min
Elongation95 C30 sec
60 C1 min
Read
72 C30 sec
Read
Repeat Elongation 39 times
Termination95 C1 min
55 C1 sec
Melt Curve Manual ramp 0.2C per sec Read 0.5 C55 - 95 C30 sec
21 C10 min
End
Plate Layout:
1234567
DNased 42215 HC1DNased 42215 NC1DNased 42215 SC1DNased 42215 HT1 1DNased 42215 NT1 1DNased 42215 ST1 1NTC
DNased 42215 HC2DNased 42215 NC2DNased 42215 SC2DNased 42215 HT1 2DNased 42215 NT1 2DNased 42215 ST1 2NTC
DNased 42215 HC3DNased 42215 NC3DNased 42215 SC3DNased 42215 HT1 3DNased 42215 NT1 3DNased 42215 ST1 3NTC
DNased 42215 HC4DNased 42215 NC4DNased 42215 SC4DNased 42215 HT1 4DNased 42215 NT1 4DNased 42215 ST1 4NTC
DNased 42215 HC5DNased 42215 NC5DNased 42215 SC5DNased 42215 HT1 5DNased 42215 NT1 5DNased 42215 ST1 5
DNased 42215 HC6DNased 42215 NC6DNased 42215 SC6DNased 42215 HT1 6DNased 42215 NT1 6DNased 42215 ST1 6
DNased 42215 HC7DNased 42215 NC7DNased 42215 SC7DNased 42215 HT1 7DNased 42215 NT1 7DNased 42215 ST1 7
DNased 42215 HC8DNased 42215 NC8DNased 42215 SC8DNased 42215 HT1 8DNased 42215 NT1 8DNased 42215 ST1 8
Results:

All Samples

NTCs

So it looks like there is a deviancy again in 2/4 NTCs. This is distressing as it keeps happening. The previous CRAF run didn't have this issue. It could be possible that I'm contaminating one of the NTCs when I'm pipetting because my hands have been shaking slightly while I pipette. Hopefully I can run this one again without the contamination in the future.