small R API client for our superior in house LIMS built by Heinz
library("devtools")
install_github("forskaller", "csf-ngs")
library("forskaller")
username <- ""
password <- ""
multiplex <- 0
session <- startSession(createCredentials(username, password))
m <- getMultiplex(multiplex, session)
samples <- getSamples(m$sampleId, session)
samples
samples$measurements$Preparation
samples$measurements$`cDNA Synthesis`
endSession(session)
illumina2bam has to be installed and java -jar /path/to/BamIndexDecoder.jar has to be aliased to BamIndexDecoder
```R library("forskaller") username <- "" password <- ""
session <- startSession(createCredentials(username, password)) cmd <- generateSplitFile(bamPath, session) print(cmd) endSession(session)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.