How Can We Help?
< Back
You are here:
Print

Example of using markdown

Hi here is an example of using markdown in a post.

x <- 3
y <- 3x + 2

Let’s see if that worked. Yes it did! Here’s another one for good measure:

J     <- 3
N     <- rep(0, J)
Y     <- list()
reads <- list()

## Save data 
for(j in 1:J){

  my_data    <- read.table(paste('GS689.LI-', j, 'Aligned.sort.bam.IsoMatrix', sep = ''), header = FALSE, sep = "\t")
  reads[[j]] <- my_data$V2
  Y[[j]]     <- as.matrix(my_data[,-c(1,2)])
  N[j]       <- sum(my_data$V2)

}
Table of Contents