lfmSingleSequence
(low frequency mutations in Single Sequence) launch lfm
method
on every gene or domain inside a LowMACA object without aligning the sequences
lfmSingleSequence(object , metric='qvalue', threshold=.05
, conservation=0.1 , BPPARAM=bpparam("SerialParam") , mail=NULL , perlCommand="perl"
,verbose=FALSE)
BiocParallelParam
specifiying parameters related to
the parallel execution of some of the tasks and calculations within this function.
See function bpparam()
from the BiocParallel
package.lfm
launched on these 100 objects.
The output looks very similar to lfm
, but in this case the
column Multiple_Aln_pos has a different meaning. While in lfm
it shows
where the mutation falls in the consensus sequence, in this case it must be intended
the consensus within the gene. If the original LowMACA object had mode equal to 'gene', the column
Multiple_Aln_pos will be always equal to Amino_Acid_Position. If mode is 'pfam', it is the same unless
a gene harbors more than one domain of the same type within its sequence. In that case, an internal alignment
of every domain inside the protein is performed.
lfm
#Load homeobox example
data(lmObj)
#Run lfmSingleSequence
significant_muts <- lfmSingleSequence(lmObj)
#Show the result
head(significant_muts)
#Show all the genes that harbor significant mutations without the alignment
unique(significant_muts$Gene_Symbol)
Run the code above in your browser using DataLab