-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from Meredith-Lab/temperature
Fix inconsistent value for temperature
- Loading branch information
Showing
8 changed files
with
15 additions
and
13 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: volcalc | ||
Title: Calculate Volatility of Chemical Compounds | ||
Version: 1.0.0.9000 | ||
Version: 1.0.1 | ||
Authors@R: c( | ||
person("Kristina", "Riemer", , "[email protected]", role = c("aut", "cre", "cph"), | ||
comment = c(ORCID = "0000-0003-3802-3331")), | ||
|
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
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
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 |
---|---|---|
|
@@ -65,7 +65,7 @@ pak::pkg_install('volcalc') | |
You can install the 'legacy' version used in our in-prep publication with | ||
|
||
``` r | ||
pak::pkg_install("Meredith-Lab/[email protected].0") | ||
pak::pkg_install("Meredith-Lab/[email protected].1") | ||
``` | ||
|
||
Installation of `volcalc` requires the system libraries [OpenBabel](https://openbabel.org/) and Eigen3 (requirements of the `ChemmineOB` package, which `volcalc` depends on). `pak` will take care of the installation of these libraries for you on some systems, but you may need to install them manually. | ||
|
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 |
---|---|---|
|
@@ -68,7 +68,7 @@ You can install the ‘legacy’ version used in our in-prep publication | |
with | ||
|
||
``` r | ||
pak::pkg_install("Meredith-Lab/[email protected].0") | ||
pak::pkg_install("Meredith-Lab/[email protected].1") | ||
``` | ||
|
||
Installation of `volcalc` requires the system libraries | ||
|
@@ -123,7 +123,7 @@ calc_vol(compound_id = "C16181", path = out_path) | |
#> pathway compound formula name | ||
#> CMP1 NA C16181 C6H7Cl5O beta-2,3,4,5,6-Pentachlorocyclohexanol | ||
#> volatility category | ||
#> CMP1 6.975571 high | ||
#> CMP1 6.975349 high | ||
``` | ||
|
||
This returns a dataframe with columns specifying general info about the | ||
|
@@ -161,7 +161,7 @@ example_compound_vol <- | |
fx_groups_df = example_compound_fx_groups, | ||
path = out_path) | ||
print(example_compound_vol$volatility) | ||
#> [1] 6.975571 | ||
#> [1] 6.975349 | ||
``` | ||
|
||
This example compound has a volatility around 7. It is in the high | ||
|
@@ -179,7 +179,7 @@ pathway can be returned as below. | |
example_pathway_vol <- calc_pathway_vol("map00361", path = out_path) | ||
print(example_pathway_vol[1,]) | ||
#> pathway compound formula name volatility category | ||
#> CMP1 map00361 C00011 CO2 CO2; 7.914336 high | ||
#> CMP1 map00361 C00011 CO2 CO2; 7.914113 high | ||
``` | ||
|
||
## Dataframe columns | ||
|
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
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