Skip to content

Commit

Permalink
prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mikessh committed Feb 23, 2022
1 parent 66d4a1e commit 7909e1e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
2 changes: 2 additions & 0 deletions latest-version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
https://github.com/antigenomics/vdjdb-db/releases/download/2022-02-23/vdjdb-2022-02-23.zip
https://github.com/antigenomics/vdjdb-db/releases/download/2022-02-22/vdjdb-2022-02-22.zip
https://github.com/antigenomics/vdjdb-db/releases/download/2021-09-05/vdjdb-2021-09-05.zip
https://github.com/antigenomics/vdjdb-db/releases/download/2021-02-02/vdjdb-2021-02-02.zip
https://github.com/antigenomics/vdjdb-db/releases/download/2021-01-10/vdjdb-2021-01-10.zip
Expand Down
24 changes: 17 additions & 7 deletions summary/vdjdb_summary.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ kable(format = "html", df.a)

Summary of antigens and T-cell receptors related to COVID-19 pandemic. Number of records for SARS-CoV-2 epitopes grouped by Gene+HLA plotted using alluvium plot. Epitopes with less than 10 records in total were not counted.

```{r message=FALSE, warning=FALSE}
```{r message=FALSE, warning=FALSE, fig.width=11.5, fig.width=11.5}
df %>%
filter(species == "HomoSapiens",
startsWith(as.character(antigen.species), "SARS-CoV")) %>%
Expand All @@ -269,22 +269,32 @@ ggplot(df.c %>%
axis4 = `TCR chain`,
y = log2(Records))) +
geom_alluvium(aes(fill = paste(Gene, HLA)),
color = "grey50", alpha = 0.8) +
geom_stratum(fill = "grey90", color = "grey50") +
color = "white",
alpha = 0.7,
curve_type = "sigmoid") +
geom_stratum(fill = "white",
color = "grey75") +
geom_text(stat = "stratum",
aes(label = after_stat(stratum))) +
#geom_label(stat = "stratum", label.strata = T,
# #label.size = 0,
# fill = "grey30",
# #color = "white"
# ) +
theme_pubclean() +
scale_fill_discrete("") +
ylab("") +
scale_fill_discrete(guide=F, "") +
#scale_fill_viridis_d(guide=F, "") +
ylab("") +
scale_x_discrete(limits = c("Gene", "HLA", "Epitope", "TCR chain"),
expand = c(.1, .1)) +
expand = c(.1, .1),
position = "top") +
theme(axis.text.y = element_blank(),
axis.ticks.y = element_blank(),
axis.text.x = element_text(size = 16),
axis.ticks.x = element_blank(),
panel.grid.major.y = element_blank(),
legend.position = "bottom")
legend.position = "bottom") #+
#guides(fill=guide_legend(nrow=4, byrow=TRUE))
```

Summary of SARS-CoV-2 epitopes and corresponding TCR alpha and beta chain specificity records
Expand Down

0 comments on commit 7909e1e

Please sign in to comment.