mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
7e14529975
linkage maps of markers segregating in experimental crosses. MAPMAKER/EXP performs full multipoint linkage analysis (simultaneous estimation of all recombination fractions from the primary data) for dominant, recessive, and co- dominant (e.g. RFLP-like) markers. MAPMAKER/EXP is an experimental-cross-only successor to the original MAPMAKER program. MAPMAKER/QTL is a companion program to MAPMAKER/EXP which allows one to map genes controlling polygenic quantitative traits in F2 intercrosses and BC1 backcrosses relative to a genetic linkage map. More information on MAPMAKER/QTL can be found in the technical report (included with MAPMAKER/QTL). WWW: http://www.broad.mit.edu/ftp/distribution/software/mapmaker3/ PR: ports/122452 Submitted by: Tassilo Philipp <tphilipp at potion-studios.com>
19 lines
583 B
C
19 lines
583 B
C
--- mapm/state.c.orig 2008-04-04 20:05:29.000000000 +0000
|
|
+++ mapm/state.c 2008-04-03 19:37:40.000000000 +0000
|
|
@@ -734,7 +734,7 @@
|
|
{
|
|
int i, usenum;
|
|
|
|
- fprint(fp,"*MapmakerStatusInfo:\n");
|
|
+ fprint(fp,WRS("*MapmakerStatusInfo:\n"));
|
|
|
|
sf(ps,"*PrintNames: %d\n",print_names); fpr(fp);
|
|
sf(ps,"*Tolerance: %lf\n",tolerance); fpr(fp);
|
|
@@ -852,5 +852,5 @@
|
|
load_table(context[i]->sequence_history,fp,INDEX_BY_NUMBER,num);
|
|
}
|
|
|
|
- if (the_seq_history_num>0) set_current_seq("none",FALSE);
|
|
+ if (the_seq_history_num>0) set_current_seq(WRS("none"),FALSE);
|
|
}
|