Skip to content
Prev 7783 / 21312 Next

[Bioc-devel] Bug in frmaTools

Ryan,

I've made these changes to the frmaTools package (should show up in version
1.21.1):

Old:
 if(!identical(as.character(pmi),rownames(pms))) stop("Mismatch between
pmindex and rownames of pms")
Nes:
  if(!identical(sprintf("%i",pmi),rownames(pms))) stop("Mismatch between
pmindex and rownames of pms")

Old:
vers <- ifelse(!is.null(cdfname), as.character(packageVersion(cdfname)), "")
New:
  if(!is.null(cdfname)){
      vers <- as.character(packageVersion(cdfname))
  } else vers <- ""

Thanks for pointing out these issues. Please let me know if you run into
any more problems.

Best,
Matt
On Tue, Jul 7, 2015 at 1:08 PM, Ryan Thompson <rct at thompsonclan.org> wrote: