-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dan Van Twisk
authored and
Dan Van Twisk
committed
Dec 13, 2024
0 parents
commit 1908a58
Showing
12 changed files
with
1,032 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
language: r | ||
r: bioc-devel | ||
|
||
script: | ||
- R CMD build . | ||
- R CMD check *tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
Package: NeoantigenProfiler | ||
Title: Determines Cell Groupings of Neoantigens from Longread-RNAseq Data | ||
Description: Immunogenic targets such are vital for a sustained immune response | ||
against a pathogen. For cancer, neoantigens can be targetted to sustain | ||
an immune reaction against a tumor. However, cancer immunotherapy has | ||
not yet realized its potential to treat the disease. One reason why this | ||
failure exists is because a single set of neoantigens used in a | ||
treatment may only target a subset of the tumor cells, while another | ||
neoantigenically distinct lineage, may cause the tumor to reoccur. This | ||
package uses single-cell Longread-RNAseq data and the FLAMES package | ||
to demulitplux and group like clusters of cells that share neoantigens. | ||
biocViews: Genetics, DataRepresentation, Sequencing | ||
Version: 0.0.1 | ||
License: Artistic-2.0 | ||
Encoding: UTF-8 | ||
Authors@R: person("Daniel", "Van Twisk", email="dvantwisk@gmail.com", role= c("aut", "cre")) | ||
Imports: | ||
BiocStyle, | ||
DescTools, | ||
dplyr, | ||
DropletUtils, | ||
ggplot2, | ||
ggnetwork, | ||
igraph, | ||
lpSolve, | ||
Matrix, | ||
plotly, | ||
Rcpp, | ||
scater, | ||
Seurat, | ||
shiny, | ||
shinyWidgets, | ||
SingleCellExperiment, | ||
splatter, | ||
knitr | ||
Suggests: testthat | ||
LinkingTo: Rcpp | ||
Collate: wmst.R | ||
app.R | ||
VignetteBuilder: knitr | ||
RoxygenNote: 7.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import(Rcpp) | ||
import(shiny) | ||
import(lpSolve) | ||
import(shinyWidgets) | ||
import(splatter) | ||
import(SingleCellExperiment) | ||
import(DropletUtils) | ||
import(Seurat) | ||
import(scater) | ||
import(igraph) | ||
import(ggplot2) | ||
import(ggnetwork) | ||
import(plotly) | ||
import(DescTools) | ||
import(dplyr) | ||
import(Matrix) | ||
export(load_TREK) |
Empty file.
Oops, something went wrong.