Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
romagnolid committed Mar 12, 2021
1 parent 4607025 commit 8bb271b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Package: PAMES
Date: 2021-03-05
Date: 2021-03-12
Type: Package
Title: Purity Assessment from clonal MEthylation Sites
Description: Exploiting data from DNA methylation, this package provides the operations
required to evaluate the purity of tumor samples.
Version: 2.7
Version: 2.7.1
Authors@R: c(person("Dario", "Romagnoli", role=c("aut", "cre"),
email="[email protected]"),
person("Matteo", "Benelli", role="aut"),
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# PAMES v2.7.1
- fix `select_informative_regions_ext` with flag `return_info=TRUE`
# PAMES v2.7.0
- renamed parameter `platform` to `ref_table`
# PAMES v2.5.0
Expand Down
2 changes: 1 addition & 1 deletion R/select_informative_regions_ext.R
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ select_informative_regions_ext <- function(tumor_table, control_table, auc,

message(sprintf("[%s] Done", Sys.time()))
if (return_info) {
return(list(regions, diff_meth_regions))
return(c(regions, list(info=diff_meth_regions)))
} else {
return(regions)
}
Expand Down

0 comments on commit 8bb271b

Please sign in to comment.