Description Usage Arguments Details Value Author(s) See Also Examples
Checks and loads into a data.frame
your target input file.
1 | readTarget(target_file, asr_counts, del = "\t")
|
target_file |
A character-delimited text input file, containing metadata about ASR counts
files (see |
asr_counts |
The |
del |
Specifies the delimiter for the target input file, usually a semi-colon ";", a coma "," or a tabulation "\t". (default : "\t"). Note : None of your data values must contain this delimiter (be specially careful in gene names). |
See target_file.txt
for more details about the target_file
format.
a data.frame
containing the target.
Marine Rohmer marine.rohmer@mgx.cnrs.fr,
Christelle Reynès christelle.reynes@igf.cnrs.fr
target_file.txt
: the metadata file on which to run the
readTarget
function.
1 2 3 4 5 6 7 8 | # Target input file
targetfile <- system.file("extdata", "target_file.txt",
package = "ISoLDE")
# The data.frame containing ASR counts is also required
data(rawASRcounts)
# Load into a data.frame and check the target file
target <- readTarget(target_file = targetfile,
asr_counts = rawASRcounts, del = "\t")
|
Reading target file...
Done
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.