-
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 #21 from Meredith-Lab/citation
Add citation files
- Loading branch information
Showing
3 changed files
with
76 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ LICENSE.md | |
README.Rmd | ||
^LICENSE\.md$ | ||
^\.github$ | ||
^CITATION\.cff$ |
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,48 @@ | ||
# ----------------------------------------------------------- | ||
# CITATION file created with {cffr} R package, v0.4.1 | ||
# See also: https://docs.ropensci.org/cffr/ | ||
# ----------------------------------------------------------- | ||
|
||
cff-version: 1.2.0 | ||
message: 'To cite package "volcalc" in publications use:' | ||
type: software | ||
license: MIT | ||
title: 'volcalc: Calculate Volatility of Chemical Compounds' | ||
version: 1.0.0 | ||
abstract: Use this package to calculate estimated volatility values for individual | ||
compounds of interest or for all compounds in a pathway. Calculation uses the SIMPOL | ||
method (Prankow and Asher, 2008), and is only currently applicable to compounds | ||
and pathways in KEGG. | ||
authors: | ||
- family-names: Riemer | ||
given-names: Kristina | ||
email: [email protected] | ||
orcid: https://orcid.org/0000-0003-3802-3331 | ||
preferred-citation: | ||
type: article | ||
title: Automating methods for estimating metabolite volatility | ||
authors: | ||
- family-names: Meredith | ||
given-names: LK | ||
- family-names: Riemer | ||
given-names: Kristina | ||
- family-names: Geffre | ||
given-names: P | ||
- family-names: Honeker | ||
given-names: L | ||
- family-names: Krechmer | ||
given-names: J | ||
- family-names: Graves | ||
given-names: K | ||
- family-names: Tfaily | ||
given-names: M | ||
- family-names: Ledford | ||
given-names: SK | ||
year: in prep | ||
journal: Frontiers in Microbiology | ||
date-released: '2023-06-06' | ||
contact: | ||
- family-names: Riemer | ||
given-names: Kristina | ||
email: [email protected] | ||
orcid: https://orcid.org/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
c( | ||
bibentry( | ||
bibtype = "Manual", | ||
title = "volcalc: Calculate Volatility of Chemical Compounds", | ||
author = person("Kristina", "Riemer", comment = c(ORCID = "0000-0003-3802-3331")), | ||
year = "2023", | ||
note = "R package version 1.0.0", | ||
header = "To cite volcalc in publications please use:" | ||
), | ||
bibentry( | ||
bibtype = "Article", | ||
title = "Automating methods for estimating metabolite volatility", | ||
author = c( | ||
person("LK", "Meredith"), | ||
person("Kristina", "Riemer"), | ||
person("P", "Geffre"), | ||
person("L", "Honeker"), | ||
person("J", "Krechmer"), | ||
person("K", "Graves"), | ||
person("M", "Tfaily"), | ||
person("SK", "Ledford") | ||
), | ||
year = "in prep", | ||
journal = "Frontiers in Microbiology", | ||
header = "Please also cite the related manuscript:" | ||
) | ||
) |