Description Usage Arguments See Also Examples
View source: R/generate_dataset_file.R
Merges two or more dataset files into one, with one common header.
1 | joinDatasetFiles(listOfFiles, nbOfLinesInHeader, newHead, outputFile)
|
listOfFiles |
a list of the names of the files to join |
nbOfLinesInHeader |
typically 3 |
newHead |
the new header |
outputFile |
the name of the file to save the header and concatenated dataset in |
generateDatasetFile
, joinDatasets
1 2 3 4 5 6 7 8 9 | data(exampleHeader, package="RNAither")
data(exampleDataset, package="RNAither")
saveDataset(header, dataset, "save_testfile1.txt")
header[[1]] <- "external_experiment_name,Test screen"
header[[2]] <- "comments,contains twice Screen Nb 1"
joinDatasetFiles(list( "save_testfile1.txt", "save_testfile1.txt"), 3, header,
"concatenated_testfile.txt")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.