Skip to content

Commit

Permalink
version 1.0-13
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles C. Berry authored and cran-robot committed Mar 26, 2004
1 parent 259fc76 commit efdd301
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Expand Up @@ -94,3 +94,9 @@ add src/Makevars for BLAS usage

Version: 1.0-12
R_Ext/Mathlib.h is deprecated - change to Rmath.h

----------------------------------------

Version: 1.0-13
CoDoc updates, .C( ..., PACKAGE= ) discipline

4 changes: 2 additions & 2 deletions DESCRIPTION
@@ -1,6 +1,6 @@
Package: bqtl
Version: 1.0-12
Date: 2003-16-09
Version: 1.0-13
Date: 2004-03-26
Title: Bayesian QTL mapping toolkit
Author: Charles C. Berry <cberry@ucsd.edu>
Maintainer: Charles C. Berry <cberry@ucsd.edu>
Expand Down
3 changes: 2 additions & 1 deletion R/lapadj.s
Expand Up @@ -293,7 +293,8 @@ function(reg.formula, ana.obj,
postApprox = double(1),
iter = as.integer(iter),
tol = as.double(tol),
nem = as.integer(nem))
nem = as.integer(nem),
PACKAGE="bqtl")
if ( (z$postApprox==0) && (z$hkApprox==0))
adj <- 1.0
else
Expand Down
3 changes: 2 additions & 1 deletion R/swapbc1.c.s
Expand Up @@ -105,7 +105,8 @@
postwk=double(nopt),
coefwk=double(nopt*nmax),
alt.marginal=double(nopt),
alt.coef=double(nrx))
alt.coef=double(nrx),
PACKAGE="bqtl" )
res <- z[c("configs","posteriors","coefs","cond","marg",
"alt.marginal","alt.coef")]
res$configs <- array(res$configs+1,c(nmax,nlocs,nreps))
Expand Down
3 changes: 2 additions & 1 deletion R/swapf2.c.s
Expand Up @@ -114,7 +114,8 @@
postwk=double(nopt),
coefwk=double(nopt*nmax),
alt.marginal=double(nopt),
alt.coef=double(nrx))
alt.coef=double(nrx),
PACKAGE="bqtl" )

res <- z[c("configs","posteriors","coefs","cond","marg","alt.marginal","alt.coef")]
res$configs <- array(res$configs+1,c(nmax,nlocs,nreps))
Expand Down
2 changes: 1 addition & 1 deletion R/twohkbc1.s
Expand Up @@ -75,7 +75,7 @@
qraux =double(nmax),
zraux =double(nmax),
zrank=integer(1),
tol=as.double(1e-10))[c("loc.2","loc.1","coefs.2","coefs.1")]
tol=as.double(1e-10), PACKAGE="bqtl" )[c("loc.2","loc.1","coefs.2","coefs.1")]
dim(res$loc.2) <- c(nlocs,1)
dim(res$loc.1) <- c(nlocs,1)
dim(res$coefs.2) <- c(1,nlocs)
Expand Down
2 changes: 1 addition & 1 deletion R/twohkf2.s
Expand Up @@ -83,7 +83,7 @@
qraux =double(nmax),
zraux =double(nmax),
zrank=integer(1),
tol=as.double(1e-10))[c("loc.2","loc.1","coefs.2","coefs.1")]
tol=as.double(1e-10), PACKAGE="bqtl" )[c("loc.2","loc.1","coefs.2","coefs.1")]
dim(res$loc.2) <- c(nlocs,3)
dim(res$loc.1) <- c(nlocs,3)
dim(res$coefs.2) <- c(2,nlocs)
Expand Down
2 changes: 1 addition & 1 deletion R/version.bqtl.R
@@ -1 +1 @@
version.bqtl<-"Version:1.0-12"
version.bqtl<-"Version:1.0-13"
9 changes: 0 additions & 9 deletions data/00Index

This file was deleted.

4 changes: 2 additions & 2 deletions man/swapbc1.Rd
Expand Up @@ -9,8 +9,8 @@
(backcross) designs and recombinant inbred lines.
}
\usage{
swapbc1(varcov, invars, rparm, nreps, ana.obj, locs=seq(ncol(var.x)),
locs.prior=rep(1, ncol(var.x)),tol=1e-10 )
swapbc1(varcov, invars, rparm, nreps, ana.obj, locs=NULL,
locs.prior=NULL, tol=1e-10 )

}
\arguments{
Expand Down

0 comments on commit efdd301

Please sign in to comment.