-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Osorio
committed
Dec 13, 2023
1 parent
f36996a
commit a1a91be
Showing
12 changed files
with
65 additions
and
51 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.travis.yml | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
NEWS.md |
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,5 +1,5 @@ | ||
Package: Peptides | ||
Version: 2.4.4 | ||
Version: 2.4.6 | ||
Title: Calculate Indices and Theoretical Physicochemical Properties of | ||
Protein Sequences | ||
Authors@R: c(person("Daniel","Osorio", email="[email protected]",role=c("aut","cre"), comment = c(ORCID = "0000-0003-4424-8422")), | ||
|
@@ -17,5 +17,5 @@ Description: Includes functions to calculate several physicochemical properties | |
License: GPL-2 | ||
LinkingTo: Rcpp | ||
Imports: Rcpp | ||
RoxygenNote: 7.1.1 | ||
RoxygenNote: 7.2.3 | ||
Encoding: UTF-8 |
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 |
---|---|---|
|
@@ -6,17 +6,17 @@ | |
#' Some amino acids possess side chains with specific properties that allow grouping them in different ways. | ||
#' The \code{aaComp} function classifies amino acids based on their size, side chains, hydrophobicity, charge and their response to pH 7. | ||
#' @param seq An amino-acid sequence | ||
#' @return The output is a matrix with the number and percentage of amino acids of a particular class | ||
#' @return The output is a matrix with the number and percentage of amino acids of a particular class: | ||
#' \itemize{ | ||
#' \item{Tiny }{(A + C + G + S + T)} | ||
#' \item{Small }{(A + B + C + D + G + N + P + S + T + V)} | ||
#' \item{Aliphatic }{(A + I + L + V)} | ||
#' \item{Aromatic }{(F + H + W + Y)} | ||
#' \item{Non-polar }{(A + C + F + G + I + L + M + P + V + W + Y)} | ||
#' \item{Polar }{(D + E + H + K + N + Q + R + S + T + Z)} | ||
#' \item{Charged }{(B + D + E + H + K + R + Z)} | ||
#' \item{Basic }{(H + K + R)} | ||
#' \item{Acidic }{(B + D + E + Z)} | ||
#' \item Tiny (A + C + G + S + T) | ||
#' \item Small (A + B + C + D + G + N + P + S + T + V) | ||
#' \item Aliphatic (A + I + L + V) | ||
#' \item Aromatic (F + H + W + Y) | ||
#' \item Non-polar (A + C + F + G + I + L + M + P + V + W + Y) | ||
#' \item Polar (D + E + H + K + N + Q + R + S + T + Z) | ||
#' \item Charged (B + D + E + H + K + R + Z) | ||
#' \item Basic (H + K + R) | ||
#' \item Acidic (B + D + E + Z) | ||
#' } | ||
#' @note This function was originally written by Alan Bleasby ([email protected]) for the EMBOSS package. | ||
#' Further information: http://emboss.sourceforge.net/apps/cvs/emboss/apps/pepstats.html | ||
|
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,12 +1,11 @@ | ||
citHeader("To cite Peptides in publications, please use:") | ||
citEntry(entry = "article", | ||
author = personList(c(person(given = "Daniel", family = "Osorio"),person(given = "Paola", family = "Rondon-Villarreal"),person(given = "Rodrigo", family = "Torres"))), | ||
title = "Peptides: A Package for Data Mining of Antimicrobial Peptides", | ||
journal = "The R Journal", | ||
year = "2015", | ||
issn = "2073-4859", | ||
volume = "7", | ||
number = "1", | ||
pages = "4-14", | ||
textVersion = "Osorio, D., Rondon-Villarreal, P. & Torres, R. Peptides: A package for data mining of antimicrobial peptides. The R Journal. 7(1), 4-14 (2015)." | ||
) | ||
bibentry( | ||
bibtype = "Article", | ||
title = "Peptides: a package for data mining of antimicrobial peptides", | ||
author = "Daniel Osorio and Paola Rondón-Villarreal and Rodrigo Torres", | ||
journal = "The R Journal", | ||
year = 2015, | ||
volume = 7, | ||
number = 1, | ||
pages = "4-14", | ||
doi = "10.32614/RJ-2015-001" | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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