Description Usage Arguments Value Author(s) Examples
Calculate the best matching augmented subsequences on both SNP and reference alleles for motifs. Obtain extra unmatching position on the best matching augmented subsequence of the reference and SNP alleles.
1 2 | dtMotifMatch(snp.tbl, motif.scores, snpids = NULL, motifs = NULL,
motif.lib, ncores = 2)
|
snp.tbl |
A data.frame with the following information:
| |||||||||||||||||||
motif.scores |
A data.frame with the following information:
| |||||||||||||||||||
snpids |
A subset of snpids to compute the subsequences. Default: NULL, when all snps are computed. | |||||||||||||||||||
motifs |
A subset of motifs to compute the subsequences. Default: NULL, when all motifs are computed. | |||||||||||||||||||
motif.lib |
A list of named position weight matrices. | |||||||||||||||||||
ncores |
The number of cores used for parallel computing. Default: 10 |
A data.frame containing all columns from the function,
MatchSubsequence
. In addition, the following columns are added:
snp_ref_start, snp_ref_end, snp_ref_length | Location and Length of the best matching augmented subsequence on both the reference and SNP allele. |
ref_aug_match_seq_forward | Best matching augmented subsequence or its corresponding sequence to the forward strand on the reference allele. |
snp_aug_match_seq_forward | Best matching augmented subsequence or its corresponding sequence to the forward strand on the SNP allele. |
ref_aug_match_seq_reverse | Best matching augmented subsequence or its corresponding sequence to the reverse strand on the reference allele. |
snp_aug_match_seq_reverse | Best matching augmented subsequence or its corresponding sequence to the reverse strand on the SNP allele. |
ref_location | SNP location of the best matching augmented subsequence on the reference allele. Starting from zero. |
snp_location | SNP location of the best matching augmented subsequence on the SNP allele. Starting from zero. |
ref_extra_pwm_left | Left extra unmatching position on the best matching augmented subsequence of the reference allele. |
ref_extra_pwm_right | Right extra unmatching position on the best matching augmented subsequence of the reference allele. |
snp_extra_pwm_left | Left extra unmatching position on the best matching augmented subsequence of the SNP allele. |
snp_extra_pwm_right | Right extra unmatching position on the best matching augmented subsequence of the SNP allele. |
Sunyoung Shinsunyoung.shin@utdallas.edu
1 2 3 | data(example)
dtMotifMatch(motif_scores$snp.tbl, motif_scores$motif.scores,
motif.lib = motif_library)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.