Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/parseAlignment_call.R
Compute probability of alignments and save them into .prob file.
1 2 3 4 |
alignFile |
File containing read alignments. |
outFile |
Name of the output file. |
inputFormat |
Input format: possible values |
trInfoFile |
File to save transcript information extracted from [BS]AM file and reference. |
trSeqFile |
File containing transcript sequence in FASTA format. |
expressionFile |
Transcript relative expression estimates — for better non-uniform read distribution estimation. |
readsN |
Total number of reads. This is usually not necessary if SAM/BAM contains also reads with no valid alignments. |
uniform |
Use uniform read distribution. |
limitA |
Limit maximum number of alignments per read. Reads with more alignments than limit will be discarded. |
lenMu |
Set mean of log fragment length distribution. l_frag ~ LogNormal(mu,sigma^2) |
lenSigma |
Set sigma^2 (or variance) of log fragment length distribution. l_frag ~ LogNormal(mu,sigma^2) |
excludeSingletons |
Exclude single mate alignments for paired-end reads. |
mateNamesDiffer |
Mates from paired-end reads have different names. |
verbose |
Verbose output. |
veryVerbose |
Very verbose output. |
procN |
Maximum number of threads to be used. |
pretend |
Do not execute, only print out command line calls for the C++ version of the program. |
This function uses the alignments and reference file to assign probability to each alignment. It uses either bias-corrected or uniform model for the read distribution, assumes Log-Normal distribution of fragment lengths for pair-end read data and uses quality scores and mismatches to assign probability for every alignment of a read (or fragment) to a transcript.
.prob |
file containing the alignment probabilities |
.tr |
file containing reference transcript names, lengths and effective lengths - optional |
Peter Glaus
1 2 3 4 5 | ## Not run:
parseAlignment(alignFile="data.sam", outFile="data.prob",
trSeqFile="trReference.fa" ,trInfoFile="data.tr")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.