Skip to content

Commit 982d25c

Browse files
WIP Update course for pVACtools 6.0
1 parent b7e524b commit 982d25c

8 files changed

Lines changed: 312 additions & 132 deletions

HCC1395_inputs.zip

47.1 KB
Binary file not shown.

docs/01-intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Introduction
55

6-
This course has been developed recently (Summer 2023). We welcome any feedback at help@pvactools.org or by submission of [GitHub issues](https://github.com/griffithlab/pVACtools_Intro_Course/issues).
6+
This course was developed in Summer 2023 and updated in Fall 2025. We welcome any feedback at help@pvactools.org or by submission of [GitHub issues](https://github.com/griffithlab/pVACtools_Intro_Course/issues).
77

88
## Motivation
99

@@ -17,11 +17,11 @@ allele expression, peptide binding affinities, and determination of whether a mu
1717
users to efficiently generate, review, and interpret results, selecting candidate peptides for individual experiments or patient vaccine designs. Additional modules
1818
support design choices needed for competing vaccine delivery approaches. One such module optimizes peptide ordering to minimize junctional epitopes in DNA vector
1919
vaccines. Downstream analysis commands for synthetic long peptide vaccines are available to assess candidates for factors that influence peptide synthesis. All
20-
of the aforementioned steps are executed via a modular workflow consisting of tools for neoantigen prediction from somatic alterations (pVACseq, pVACfuse, and pVACbind),
20+
of the aforementioned steps are executed via a modular workflow consisting of tools for neoantigen prediction from somatic alterations (pVACseq, pVACfuse, pVACsplice, and pVACbind),
2121
prioritization, and selection using a graphical Web-based interface (pVACview), and design of DNA vector–based vaccines (pVACvector) and synthetic long peptide
2222
vaccines. pVACtools is available at [http://www.pvactools.org](http://www.pvactools.org).
2323

24-
<img src="resources/images/01-intro_files/figure-html//1uz39zaObDGKhEVCGzO0JO35CTbC0oRAM0mxgLcMAA9Y_g22b1533a196_0_0.png" title="pVACtools is a cancer immunotherapy tools suite" alt="pVACtools is a cancer immunotherapy tools suite" width="100%" style="display: block; margin: auto;" />
24+
<img src="resources/images/01-intro_files/figure-html//1uz39zaObDGKhEVCGzO0JO35CTbC0oRAM0mxgLcMAA9Y_g3a37485c18b_1_0.png" title="pVACtools is a cancer immunotherapy tools suite" alt="pVACtools is a cancer immunotherapy tools suite" width="100%" style="display: block; margin: auto;" />
2525

2626
## Background
2727

docs/02-prerequisites.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ install.packages("RCurl", dependencies=TRUE)
6262
install.packages("curl", dependencies=TRUE)
6363
install.packages("string", dependencies=TRUE)
6464
install.packages("shinycssloaders", dependencies=TRUE)
65+
install.packages("plotly", dependencies=TRUE)
66+
install.packages("shinyWidgets", dependencies=TRUE)
67+
install.packages("colourpicker", dependencies=TRUE)
6568
```
6669

6770
## Data
@@ -96,20 +99,40 @@ For pVACfuse:
9699
- `star-fusion.fusion_predictions.tsv`: A STARFusion prediction file with fusion read support
97100
and expression information.
98101

102+
For pVACsplice:
103+
104+
- `HCC1395.splice_junctions.tsv`: A RegTools junctions output TSV file
105+
99106
General:
100107

101108
- `Homo_sapiens.GRCh38.pep.all.fa.gz`: A reference proteome peptide FASTA to use
102109
for determining whether there are any reference matches of neoantigen candidates.
103110

104111
To download this data, please run the following commands:
105112

106-
107113
```bash
108114
wget https://raw.githubusercontent.com/griffithlab/pVACtools_Intro_Course/main/HCC1395_inputs.zip
109115
unzip HCC1395_inputs.zip
110116
```
111117

118+
Additionally, to run pVACsplice, a set of reference files are required that
119+
are too large to include in the HCC1395_inputs.zip archive. To download these
120+
manually please run the following commands:
121+
122+
```bash
123+
cd HCC1395_inputs
124+
wget https://ftp.ensembl.org/pub/release-105/gtf/homo_sapiens/Homo_sapiens.GRCh38.105.chr.gtf.gz
125+
wget http://genomedata.org/pmbio-workshop/references/genome/all/ref_genome.tar
126+
tar -xf ref_genome.tar ref_genome.fa.gz ref_genome.fa.fai
127+
gunzip ref_genome.fa.gz
128+
rm -rf ref_genome.tar
129+
```
130+
131+
This will add the following reference files
132+
133+
- `ref_genome.fa` and `.fai`: A reference DNA FASTA file and index
134+
- `Homo_sapiens.GRCh38.105.chr.gtf.gz`: A reference GTF file
135+
112136
This course will not cover the required pre-processing steps for the pVACtools
113137
input data but extensive instructions on how to prepare your own data for use
114138
with pVACtools can be found at [pvactools.org](http://www.pvactools.org).
115-

docs/02-running_pvactools.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

docs/03-pvacview_tour.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)