Skip to content

Commit

Permalink
Add preprint link and missing libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
Nardus committed Nov 13, 2020
1 parent f04f141 commit dd5a53b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Zoonotic risk assessment from viral genomes

Code and data used in Mollentze _et al._ (2020) "Identifying and prioritizing potential human-infecting viruses from their genome sequences".
Code and data used in Mollentze _et al._ (2020) "Identifying and prioritizing potential human-infecting viruses from their genome sequences". ___Preprint___. [DOI:10.1101/2020.11.12.379917](https://doi.org/10.1101/2020.11.12.379917)

For a list of priority categories and ranks for all virus species in the paper, see [here](https://nardusmollentze.com/dataset/zoonotic_rank/).

Expand All @@ -20,6 +20,7 @@ For a list of priority categories and ranks for all virus species in the paper,
- [Python](https://www.python.org/) (version >=3.6)
- [Biopython](https://biopython.org/)
- [Pandas](https://pandas.pydata.org/)
- [xlrd](https://xlrd.readthedocs.io/en/latest/)
- [Java JDK](https://www.oracle.com/uk/java/technologies/javase-downloads.html) (version >=8)

If repeating all analyses (see below), the [BLAST+ suite of applications](https://www.ncbi.nlm.nih.gov/books/NBK279670/?report=classic) are also required (used for "phylogenetic neighbourhood" analyses and predictions, but not otherwise required). If your R session has trouble finding the BLAST+ executables, run `make update_path` and enter the location of the BLAST executables (e.g. `/usr/local/ncbi/blast/bin`). Making figure S9 requires [iqtree](http://www.iqtree.org/).
Expand Down
1 change: 1 addition & 0 deletions Scripts/Plotting/MakeSupplement_Sarbecoviruses.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ library(readr)
library(stringr)
library(ape)
library(ggplot2)
library(treeio)
library(ggtree)
library(scales)
library(cowplot)
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Plotting/MakeSupplementaryFigure_EffectDirection.R
Original file line number Diff line number Diff line change
Expand Up @@ -144,5 +144,5 @@ direction_plot <- plot_grid(first_column, direction_columns[[2]],
nrow = 1, align = 'v', axis = 't')


ggsave2(file.path('Plots', 'SupplementaryFigure_EffectDirection.png'), direction_plot,
ggsave2(file.path('Plots', 'SupplementaryFigure_EffectDirection.pdf'), direction_plot,
width = 7, height = 7, units = 'in')

0 comments on commit dd5a53b

Please sign in to comment.