Visualise clonal family tree: wrapper for calling on the entire repClonalFamily output
Source:R/v0_vis.R
vis.clonal_family.RdUsage
# S3 method for class 'clonal_family'
vis(.data, ...)Arguments
- .data
Clonal families from 1 or multiple samples:
repClonalFamily()output.- ...
Not used here.
Examples
# \dontrun{
data(bcrdata)
bcr_data <- bcrdata$data
clonal_family <- bcr_data %>%
seqCluster(seqDist(bcr_data), .fixed_threshold = 3) %>%
repGermline(.threads = 1) %>%
repAlignLineage(.min_lineage_sequences = 2, .align_threads = 2, .nofail = TRUE) %>%
repClonalFamily(.threads = 1, .nofail = TRUE) %>%
vis()
#> repAlignLineage requires Clustal W app to be installed!
#> Please download it from here: http://www.clustal.org/download/current/
#> or install it with your system package manager (such as apt or dnf).
# }