CNVcallFromDB | R Documentation |
LoadDB
CNVcallFromDB
This function execute the CNV call based on ExomeDepth. The subjects should be already in the Exon DB count database LoadDB
CNVcallFromDB(db, dbSubjects, reference = c("auto","all")) It assumes that the Subject is not present on the current Exon Count DB. If the subjects is already in the DB, it will stop.
db |
exon counts database |
dbSubjects |
the subjects to test |
reference |
the reference type |
The subjects should be already in the DB by calling AddNewReference
. Then the test subject should
be identified by it colnames(db$DB).
if moretha one subject is referred, then all the subjects in the DB, except the one tested,
will be used to build the reference according to the "reference" type used.
if reference == auto , then the reference will be chosen by correlation
if reference == all , all the remainders subjects will be summed up to build the reference
## Not run: DB <- LoadDB("path/to/db/RDS") DB <- AddNewReference(db=DB, sbjsBamFiles = "/..../PATIENTS/27040/27040_1.fastq.gz.subread.BAM",save=TRUE) CNVs <- CNVcallFromDB(DB, "27040") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.