Skip to content

Commit de4e1e1

Browse files
Merge pull request #14 from ncborcherding/main
Working on package documentation
2 parents 9cac38d + f887668 commit de4e1e1

11 files changed

Lines changed: 147 additions & 442 deletions

DESCRIPTION

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,22 @@ Package: deepMatchR
22
Title: Deep Learning Models for HLA Matching
33
Version: 0.99.0
44
Date: 2024-07-24
5-
Authors@R: c(
6-
person(given = "Nick", family = "Borcherding", role = c("aut", "cre"), email = "ncborch@gmail.com"))
7-
Description: A set of tools and models for analyzing HLA matching. This includes the identification and quantification of immunogenicity mismatches, the generation of in silico patients based on frequency table, and interaction with common tools in HLA.
8-
License: MIT + file LICENSE
5+
Authors@R:
6+
person(given = "Nick", family = "Borcherding", role = c("aut", "cre"),
7+
email = "ncborch@gmail.com")
8+
Description: A set of tools and models for analyzing HLA matching. This includes
9+
the identification and quantification of immunogenicity mismatches, the
10+
generation of in silico patients based on frequency table, and interaction
11+
with common tools in HLA.
12+
License: MIT + file LICENSE
913
Encoding: UTF-8
1014
LazyData: true
1115
LazyDataCompression: xz
1216
RoxygenNote: 7.3.3
1317
biocViews: Software, Classification, Annotation, Sequencing
1418
Depends:
1519
R (>= 4.1.0)
16-
Imports:
20+
Imports:
1721
basilisk,
1822
data.table,
1923
directlabels,
@@ -23,27 +27,22 @@ Imports:
2327
immReferent,
2428
memoise,
2529
parallel,
26-
patchwork
27-
Suggests:
28-
BiocStyle,
29-
directlabels,
30-
pracma,
30+
patchwork,
3131
pwalign,
3232
readxl,
33-
stats,
3433
reticulate,
35-
treemapify,
36-
utils
37-
Suggests:
34+
stats
35+
Suggests:
3836
BiocStyle,
37+
Biostrings,
3938
knitr,
4039
pracma,
4140
rappdirs,
42-
reticulate,
4341
rmarkdown,
4442
spelling,
4543
testthat (>= 3.0.0),
46-
treemapify
44+
treemapify,
45+
withr
4746
Remotes:
4847
BorchLab/immReferent
4948
SystemRequirements: Python (via basilisk)

NAMESPACE

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,34 @@
11
# Generated by roxygen2: do not edit by hand
22

33
S3method(print,hla_genotype)
4+
export(batchGetSequences)
45
export(calculateAUC)
56
export(calculateEpletLoad)
67
export(calculateMismatchLoad)
78
export(calculatePeptideBindingLoad)
9+
export(clearSequenceCache)
810
export(clearWmdaCache)
911
export(cregAUC)
12+
export(deepmatchrEnv)
1013
export(epletAUC)
1114
export(getAlleleSequence)
15+
export(getSequenceStats)
1216
export(hlaGeno)
1317
export(plotAntibodies)
1418
export(plotEplets)
1519
export(plotPRA)
1620
export(plotSAB)
21+
export(predictMHCnuggets)
1722
export(quantifyEpletMismatch)
1823
export(quantifyMismatch)
1924
export(serologyAUC)
2025
export(spiDeconvolute)
2126
export(toSerology)
2227
export(updateWmdaData)
28+
export(visualizePeptideBinding)
29+
importFrom(basilisk,basiliskRun)
30+
importFrom(basilisk,basiliskStart)
31+
importFrom(basilisk,basiliskStop)
2332
importFrom(data.table,`:=`)
2433
importFrom(data.table,as.data.table)
2534
importFrom(data.table,copy)
@@ -33,12 +42,17 @@ importFrom(data.table,setcolorder)
3342
importFrom(data.table,setkey)
3443
importFrom(data.table,setnames)
3544
importFrom(data.table,setorder)
45+
importFrom(data.table,shift)
46+
importFrom(dplyr,desc)
47+
importFrom(dplyr,group_by)
48+
importFrom(dplyr,summarise)
3649
importFrom(ggplot2,"%+replace%")
3750
importFrom(ggplot2,aes)
3851
importFrom(ggplot2,coord_flip)
3952
importFrom(ggplot2,element_blank)
4053
importFrom(ggplot2,geom_bar)
4154
importFrom(ggplot2,geom_line)
55+
importFrom(ggplot2,geom_point)
4256
importFrom(ggplot2,geom_text)
4357
importFrom(ggplot2,geom_tile)
4458
importFrom(ggplot2,geom_vline)
@@ -47,20 +61,36 @@ importFrom(ggplot2,guides)
4761
importFrom(ggplot2,labs)
4862
importFrom(ggplot2,rel)
4963
importFrom(ggplot2,scale_color_manual)
64+
importFrom(ggplot2,scale_fill_gradient2)
5065
importFrom(ggplot2,scale_fill_manual)
5166
importFrom(ggplot2,scale_size)
5267
importFrom(ggplot2,scale_y_discrete)
5368
importFrom(ggplot2,theme)
69+
importFrom(ggplot2,theme_minimal)
5470
importFrom(ggplot2,xlim)
5571
importFrom(ggplot2,ylab)
5672
importFrom(ggplot2,ylim)
5773
importFrom(grDevices,hcl.colors)
5874
importFrom(immReferent,getIMGT)
75+
importFrom(memoise,cache_filesystem)
76+
importFrom(memoise,memoise)
77+
importFrom(parallel,detectCores)
78+
importFrom(parallel,mclapply)
5979
importFrom(patchwork,plot_layout)
80+
importFrom(pwalign,pairwiseAlignment)
81+
importFrom(pwalign,pattern)
82+
importFrom(pwalign,score)
83+
importFrom(pwalign,subject)
6084
importFrom(readxl,read_excel)
85+
importFrom(reticulate,import)
86+
importFrom(reticulate,py_run_string)
6187
importFrom(stats,as.formula)
6288
importFrom(stats,mad)
6389
importFrom(stats,median)
90+
importFrom(stats,reorder)
91+
importFrom(stats,setNames)
92+
importFrom(stats,xtabs)
93+
importFrom(utils,data)
6494
importFrom(utils,globalVariables)
6595
importFrom(utils,head)
6696
importFrom(utils,modifyList)

0 commit comments

Comments
 (0)