View source: R/read_illumina_sampleSheet.R
| read_illumina_sampleSheet | R Documentation |
Read the Data block of Illumina sample sheet as data.frame
read_illumina_sampleSheet(file, sep = ",")
file |
An Illumina SampleSheet, with one Data block |
sep |
Character, separator between columns, comma by default |
A data.frame of the data block
myText <- paste("[Header]",
"IEMFileVersion,5",
"",
"[Reads]",
"51",
"1",
"[Data]",
"Lane,Sample_ID,Description",
"1,1,Sample1",
"1,2,Sample2",
"2,3,Sample3",
"2,4,Sample4", sep="\n")
read_illumina_sampleSheet(textConnection(myText))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.