Skip to content

Commit

Permalink
Add cross type "hsf1", like "dof1" but simpler haplotype probs
Browse files Browse the repository at this point in the history
- fixes Issue rqtl#149
  • Loading branch information
kbroman committed Oct 7, 2021
1 parent fa41db0 commit 7b1257b
Show file tree
Hide file tree
Showing 6 changed files with 654 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: qtl2
Version: 0.26
Version: 0.27-1
Date: 2021-10-07
Title: Quantitative Trait Locus Mapping in Experimental Crosses
Description: Provides a set of tools to perform quantitative
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## qtl2 0.27-1 (2021-10-07)

### Minor changes

- Implemented a cross type `"hsf1"` that is similar to `"dof1"`, for a
cross between an 8-way HS individual and a 9th strain. (Issue #149)


## qtl2 0.26 (2021-10-07)

### Major changes
Expand Down
2 changes: 2 additions & 0 deletions src/cross.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include "cross_dof1.h"
#include "cross_hs.h"
#include "cross_hspk.h"
#include "cross_hsf1.h"
#include "cross_riself4.h"
#include "cross_riself8.h"
#include "cross_riself16.h"
Expand Down Expand Up @@ -70,6 +71,7 @@ QTLCross* QTLCross::Create(const String& crosstype)
if(crosstype=="dof1") return new DOF1();
if(crosstype=="hs") return new HS();
if(crosstype=="hspk") return new HSPK();
if(crosstype=="hsf1") return new HSF1();
if(crosstype=="riself4") return new RISELF4();
if(crosstype=="riself8") return new RISELF8();
if(crosstype=="riself16") return new RISELF16();
Expand Down
Loading

0 comments on commit 7b1257b

Please sign in to comment.