-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_missense.Rd
64 lines (58 loc) · 1.63 KB
/
plot_missense.Rd
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plot_missense.R
\name{plot_missense}
\alias{plot_missense}
\title{Plot any missense variants}
\usage{
plot_missense(
merged_DT,
snp_filter = "Support>0",
label_yaxis = FALSE,
x_label = "UCS missense\\nmutations",
show.legend = TRUE,
show_numbers = FALSE,
show_plot = TRUE
)
}
\arguments{
\item{merged_DT}{Merged fine-mapping results data from
\link[echolocatoR]{finemap_loci}.}
\item{snp_filter}{Filter to use apply to SNPs before plotting.}
\item{label_yaxis}{Whether to label the y-axis.}
\item{x_label}{x-axis title.}
\item{show.legend}{logical. Should this layer be included in the legends?
\code{NA}, the default, includes if any aesthetics are mapped.
\code{FALSE} never includes, and \code{TRUE} always includes.
It can also be a named logical vector to finely select the aesthetics to
display.}
\item{show_numbers}{Whether to plot the numeric values or not.}
\item{show_plot}{Show plot.}
}
\description{
Plot any missense variants in fine-mapped data.
}
\examples{
\dontrun{
merged_DT <- echodata::get_Nalls2019_merged()
gg_missense <- plot_missense(
merged_DT = merged_DT,
snp_filter = "Support>0"
)
gg_missense <- plot_missense(
merged_DT = merged_DT,
snp_filter = "Consensus_SNP==TRUE"
)
}
}
\seealso{
Other annotate:
\code{\link{annotate_missense}()},
\code{\link{biomart_snp_info}()},
\code{\link{biomart_snps_to_geneInfo}()},
\code{\link{haplor_epigenetics_enrichment}()},
\code{\link{haplor_epigenetics_summary}()},
\code{\link{haplor_haploreg}()},
\code{\link{haplor_regulomedb}()},
\code{\link{snps_by_mutation_type}()}
}
\concept{annotate}