Description Usage Arguments Value Examples
View source: R/DecipherExtraction.r
Frequency calculation of variants compared to DGV.
1 2 3 | Decipher_extraction(decipherpath, smappath, smap, smap_data,
input_fmt = c("Text", "dataFrame"), win_indel = 10000,
perc_similarity = 0.5, returnMethod = c("Text", "dataFrame"))
|
decipherpath |
character. Path to DECIPHER Text file. |
smappath |
character. path to the query smap file. |
smap |
character. File name for the smap. |
smap_data |
character. Dataframe if input type chosen as dataframe. |
input_fmt |
character. Choice between text or data frame as an input to the DGV frequency calculator. |
win_indel |
Numeric. Insertion and deletion error window. Default 10000. |
perc_similarity |
Numeric . ThresholdPercentage similarity of the query SV and reference SV. Default 0.5. |
returnMethod |
character. Choice between text or data frame as the output. |
Text and character vector containg gene list and terms associated with them are stored as text files.
1 2 3 4 5 6 7 8 | decipherpath <- system.file("extdata", "population_cnv.txt",
package = "nanotatoR")
smapName <- "F1.1_TestSample1_solo_hg19.smap"
smappath <- system.file("extdata", package = "nanotatoR")
win_indel=10000;win_inv_trans=50000;perc_similarity=0.5
decipherext<-Decipher_extraction (decipherpath, input_fmt = "Text", smappath,
smap= smapName,
win_indel = 10000, perc_similarity = 0.5, returnMethod="dataFrame")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.