Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
fischuu committed Feb 15, 2023
1 parent 8b6ef54 commit 63653f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: GenomicTools
Type: Package
Title: Collection of Tools for Genomic Data Analysis
Version: 0.3.5
Version: 0.3.6
Date: 2023-02-15
Author: Daniel Fischer
Maintainer: Daniel Fischer <[email protected]>
Expand Down
3 changes: 1 addition & 2 deletions R/KEGGfunctions.R
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ getKEGGModule <- function(module){
ORTHOLOGY.tmp <- strsplit(ORTHOLOGY.tmp, " ")

ORTHOLOGY.out <- data.frame(Orthology=sapply(ORTHOLOGY.tmp,"[",1),
Desc=trimws(sapply(sapply(ORTHOLOGY.tmp,"[",-1), paste, collapse=" "))
)
Desc=apply(t(sapply(ORTHOLOGY.tmp,"[",-c(1,2))),1,paste, collapse=" "))

} else {
ORTHOLOGY.out <- "Not available"
Expand Down
1 change: 1 addition & 0 deletions inst/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Planned improvements for 0.4:
* Reduce redundancy between eQTL and QTL

Version 0.3.*:
* (6) The getKEGGModule() function had an issue and reported repeatedly same orthologs.
* (5) Added function getKEGGModuleOverview()
* (2) Orthologies are now also extracted from the function getKEGGPathway()
* (1) REGEX for grep of starting and ending lines in getKEGGPathway adjusted
Expand Down
4 changes: 2 additions & 2 deletions man/GenomicTools-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
\tabular{ll}{
Package: \tab GenomicTools\cr
Type: \tab Package\cr
Version: \tab 0.3.3\cr
Date: \tab 2022-01-31\cr
Version: \tab 0.3.6\cr
Date: \tab 2023-02-15\cr
License: \tab GPL\cr
LazyLoad: \tab yes\cr
}
Expand Down

0 comments on commit 63653f2

Please sign in to comment.