Releases: kbroman/qtl
Version 1.70
Version 1.70, 2024-08-21
Minor changes
-
Fixed a typo in the help file for
fitqtl()
. -
Small change to C code in simulate.c for R-devel: change calls to Calloc, Realloc, and Free to R_Calloc, R_Realloc, and R_Free.
-
In mqmdatatypes.cpp, changed calls to warning() to calls to Rf_warning() to avoid compile error in R-devel.
-
Add Authors@R field in the Description file
Version 1.66
Version 1.62
Version 1.60
Version 1.60, 2023-04-18
Minor changes
- In the CITATION file, change from
citEntry()
tobibentry()
.
Bug fixes
- Fixed bug in addint() and addcovarint(): when X chr QTL and missing phenotypes, would halt with error because cross wasn't getting subset. (Issue #101)
Version 1.58
Version 1.58, 2022-12-22
Minor changes
- In compiled code, replace calls to
sprintf()
with calls tosnprintf()
, to avoid warnings on CRAN.
Version 1.54
Version 1.54, 2022-12-01
Minor changes
locateXO()
andcountXO()
are now working for cross type BCsFt (by treating it as an F2 intercross).
Bug fixes
-
Fixed a bug in
summary.cross()
re&
vs&&
. -
Fix bug in
read.cross.bcsft()
so that inread.cross()
you can usecrosstype="bcsft"
Version 1.52
Version 1.52, 2022-07-09
Minor changes
-
checkAlleles()
checks that the recombination fractions in the cross object are not only LOD scores (such as frommarkerlrt()
); if they are, it re-runsest.rf()
. -
In
sim.ril()
, changed an instance ofif(class(x)=="X")
toif(inherits(x, "X"))
Version 1.50
Verison 1.50, 2021-10-06
New features
cim()
now includes anaddcovar
argument for including additional covariates in the model.
Minor changes
-
Revised qtlversion() to handle a case like "1.50".
-
Added
#define USE_FC_LEN_T
in C code that calls Fortran, because of a change in R 3.6.5 that's going to be required in R 4.2.0.
Version 1.48-1
Version 1.48, 2021-03-24
Bug fixes
-
Fixed bug in
addqtl()
andaddpair()
in which the argument
forceXcovar
wasn't getting passed toscanqtl()
. -
Fixed bug in
stepwiseqtl()
regarding the way the null LOD score is
calculated.
Version 1.47-9
Version 1.47, 2021-01-07
Minor changes
-
Added function
find_large_intervals()
for finding inter-marker intervals in a map with length greater than some value. -
Fixed potential problem in documentation, since
plot()
has moved from the graphics package to base. -
Acknowledge R Core Team among contributors, as zeroin function (in C) had been taken from R version 2.15.1. Also add a Copyrights field to the DESCRIPTION file.
-
Allow
rescalemap()
,shiftmap()
,summaryMap()
, andjittermap()
to work with plain lists. -
Fixed Issue #91 where pull.rf() gives a cryptic error if marker names are not all distinct.
Bug fixes
-
Fix a problem in
inferredpartitions()
that occurs in the devel version of R. -
Small change to
read.cross()
to avoid warning about length ofalleles
argument forcrosstype="4way"
. (Fixes Issue #90.) -
Small change to
read.cross()
to avoid messing with X chromosome genotypes whencrosstype=4way"
. (Fixes Issue #88.)