Description Usage Arguments Value Author(s) See Also Examples
A read summarization function that countsns all the reads mapping to the introns/exons based on the users detailed parameter settings. The process can be run in parallel on multiple computing cores to improve it performance.
1 2 3 4 5 6 7 | interest( bamFileYieldSize=1000000, bamFile, isPaired,
isPairedDuplicate=FALSE, isSingleReadDuplicate= NA, reference,
referenceGeneNames, referenceIntronExon, repeatsTableToFilter=c(),
junctionReadsOnly=FALSE, outFile, logFile="",
returnObj= FALSE, method=c("IntRet", "ExEx", "IntSpan"),
clusterNo=NULL, bpparam, appendLogFile=FALSE, sampleName="",
scaleLength= c(TRUE,FALSE), scaleFragment= c(TRUE,TRUE), ...)
|
bamFileYieldSize |
Maximum number of pair reads in the temprorary files created as the result of dividing the input .bam file. |
bamFile |
Path of the input bam file. |
isPaired |
Whether the bam file is the result of a paired end sequencing read mapping (TRUE) or not (FALSE). |
isPairedDuplicate |
Whether extract only (if set TRUE), filter (FALSE) or include (if set NA) PCR
dupplicates for paired mapped reads. It uses the FLAG field in the bam file to
filter the duplicate read. If the mapping software does not support detection
and flaging the duplicate reads |
isSingleReadDuplicate |
Whether extract only (if set TRUE), filter (FALSE) or include (if set NA) PCR dupplicates for single mapped reads. |
reference |
Dataframe to be used as reference; It should at least contain three same-size
vectors with the tag names |
referenceGeneNames |
A vector with the same size as the row-size of the reference which includes the gene names of the reference. |
referenceIntronExon |
A vector with the same size as the row-size of the reference with values "intron" and "exon" describing which (intron or exon) each row of the reference represents. |
repeatsTableToFilter |
A data.frame table with similar stucture to the |
junctionReadsOnly |
The parameter is considered if the |
outFile |
The name or path of the result file. |
logFile |
The log file path; if defined log information are written to the log file. |
returnObj |
If set |
method |
A vector describing the summarization methods to use; i.e. whether count reads
mapping to the introns ( |
clusterNo |
Number of parallel cluster nodes. As default (clusterNo=NULL) the total number of CPUs that are available in the cluster would be used. |
bpparam |
An optional |
appendLogFile |
Whether log information should be appended to the |
sampleName |
The name of the sample being analyzed. It will be included in the returned
object if |
scaleLength |
A vector constructed of TRUE/FALSE values, same size as the
|
scaleFragment |
A vector constructed of TRUE/FALSE values, same size as the
|
... |
Other parameter settings specific to |
If returnObj
is set TRUE
in addition to making result text files,
dependant on whether a single or two method
is defined, the results
would be returned as a single object of class SummarizedExperiment
or as
a list of size 2 which includes 2 objects of class SummarizedExperiment
one for IntRet and the other for ExEx.
Ali Oghabian
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | # Creating temp directory to store the results
outDir<- file.path(tempdir(),"interestFolder")
dir.create(outDir)
outDir<- normalizePath(outDir)
# Loading suitable bam file
bamF <- system.file("extdata", "small_test_SRR1691637_ZRSR2Mut_RHBDD3.bam",
package="IntEREst", mustWork=TRUE)
# Choosing reference for the gene RHBDD3
ref= u12[u12[,"gene_name"]=="RHBDD3",]
test= interest(
bamFileYieldSize=10000,
bamFile=bamF,
isPaired=TRUE,
isPairedDuplicate=FALSE,
isSingleReadDuplicate=NA,
reference=ref,
referenceGeneNames=ref[,"ens_gene_id"],
referenceIntronExon=ref[,"int_ex"],
repeatsTableToFilter=c(),
outFile=paste(outDir,
"interestRes.tsv", sep="/"),
logFile=paste(outDir,
"log.txt", sep="/"),
method=c("IntRet", "IntSpan"),
junctionReadsOnly=FALSE,
clusterNo=1,
returnObj=TRUE,
scaleLength= c(TRUE,FALSE),
scaleFragment= c(TRUE,TRUE)
)
test
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.