Description Usage Arguments Details Value Author(s) Examples
View source: R/MethDataInput.R
Control function in order to check existence of sequences .faste files
1 | MethDataInput(sFileName)
|
sFileName |
String; path and name of the Tab delimited text file which includes the names and paths of sequences under study |
This procedure controls whether the *.fasta files written in a tabdelimited file are exact match es to the *.fasta in given paths. It is useful if the tab delimited text file was created by hand. This can prevent non existing clone sequence files stopping the workflow in the later analysis steps. The input is a character string which is the path and name of the tab delimited text file which includes the names and paths of sequences under study. It returns a data frame object with names and paths of existing clone sequences.
Returns a data frame object with names and paths of existing analysed sequences
Arie Zackay <arie.zackay@mail.huji.ac.il>, Christine Steinhoff <steinhof@molgen.mpg.de>
1 2 3 4 5 6 7 8 9 10 | ## This pipeline will save the package example data
## in tests directory under your R.home() directory
## make sure that you have writing
## permission under R.home() directory. If you do not have permission
## choose your own path.
#dir.create(file.path(R.home(component="home"),"/BiqAnalyzer"))
BiqAnalyzer_path <- file.path(tempdir(), "BiqAnalyzer")
dir.create(BiqAnalyzer_path)
makeLocalExpDir(dataPath="/examples/BiqAnalyzer", localDir=BiqAnalyzer_path)
datameth <-MethDataInput(file.path(BiqAnalyzer_path, "PathFileTab.txt"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.