File: ChangeLog

package info (click to toggle)
r-cran-genetics 1.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 724 kB
  • ctags: 2
  • sloc: makefile: 1
file content (1516 lines) | stat: -rw-r--r-- 42,406 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
2008-08-20 19:06  warnes

	* DESCRIPTION, inst/NEWS: Bump version numer up and update NEWS
	  file

2008-08-20 19:04  warnes

	* R/makeGenotypes.R: Fix bug in makeGenoypes that caused it to
	  ignore 'sep' when identifying potential genotype columns

2008-04-30 01:23  warnes

	* man/depreciated.Rd: Add complete reference to GeneticsDesign
	  functions

2008-04-30 01:05  warnes

	* DESCRIPTION, inst/NEWS: Update for version 1.3.3

2008-04-30 00:54  warnes

	* R/genotype.R, R/locus.R: Replace obsolete (grr!) use of "$\" for
	  atomic vectors

2008-04-30 00:53  warnes

	* R/power.casectl.R, man/depreciated.Rd, man/power.casectl.Rd: Mark
	  power.casectl() as depreciated in favor of GeneticsDesign
	  functions

2007-11-20 20:30  warnes

	* R/expectedGenotypes.R: Add extra error checking to
	  expectedGenotypes()

2007-11-20 20:27  warnes

	* DESCRIPTION, inst/NEWS: Update NEWS and DESCRIPTION for genetics
	  1.3.2

2007-11-20 20:25  warnes

	* man/power.casectl.Rd: Fix documentation of kp and alpha arguments
	  to power.casectl()

2007-11-20 20:24  warnes

	* R/hapmcmc.R: Add set argument to hapshuffle

2007-11-20 20:23  warnes

	* R/power.casectl.plot.R: Add explicit variable definition to avoid
	  R CMD CHECK warning

2007-11-20 20:23  warnes

	* R/zzz.R: Package startup message states package is OBSOLETE

2007-11-20 20:20  warnes

	* R/genotype.R, tests/test.NA.R: Bug fix and regression test for
	  assignment of NA to element of existing genotype object

2007-09-12 10:41  ggorjan

	* DESCRIPTION, NAMESPACE, R/genotype.R, R/summary.genotype.R,
	  inst/NEWS, man/genotype.Rd: - fixes in genotypeOrder to ensure
	  all genotype/haplotype combinations
	  are used.
	  
	  - genotypeOrder<- is now exported

2007-08-21 14:37  warnes

	* ChangeLog, NEWS: Add softlinks into inst/ for ChangeLog and NEWS

2007-08-21 14:36  warnes

	* NEWS, inst/NEWS: Move Changelog (not in SVN) and NEWS to inst/

2007-08-21 14:35  warnes

	* inst/ChangeLog, inst/NEWS: Remove softlinks in inst, doesn't work
	  on windows

2007-08-20 18:30  warnes

	* inst/ChangeLog, inst/NEWS: Add softlinks in inst to NEWS and
	  ChangeLog so these will get installed.

2007-08-08 14:59  warnes

	* DESCRIPTION: Bump minor version number since Gregor added new
	  functions

2007-08-08 14:58  warnes

	* NEWS: Update NEWS file for new release

2007-08-08 14:56  warnes

	* DESCRIPTION: Update description for release, add credit to other
	  contributors

2007-08-08 14:51  warnes

	* R/zzz.R: Add note referring users to the R-Genetics project
	  homepage

2007-08-08 13:45  warnes

	* NAMESPACE, R/binsearch.R, man/binsearch.Rd: Move binsearch() to
	  the gtools package

2007-08-08 13:38  warnes

	* R/binsearch.R: Correct bug in binsearch. Elipses were omitted
	  from one cal to fun(). Bug reported by Matthew Walker
	  <m.g.walker@massey.ac.nz>

2007-07-25 07:32  ggorjan

	* NAMESPACE, NEWS, R/expectedGenotypes.R, R/genotype.R,
	  R/groupGenotype.R, R/order.genotype.R, R/summary.genotype.R,
	  man/expectedGenotypes.Rd, man/genotype.Rd, man/groupGenotype.Rd,
	  man/order.genotype.Rd: groupGenotype(), some utility funcs, ...

2007-07-18 16:57  ggorjan

	* NEWS, R/genotype.R: Fixed genotype() with
	  allow.partial.missing=FALSE when 'alleles'
	  argument is passed
	  
	  Example:
	  
	  ## Old
	  
	  > x <- c("C/C", "A/C", "A/A", NA, "C/B", "B/A", "B/B")
	  > alleles <- c("A", "B")
	  > genotype(x, alleles=alleles, allow.partial.missing=FALSE)
	  [1] NA "A/NA" "A/A" NA "B/NA" "B/A" "B/B"
	  Alleles: B A
	  Warning message: Found data values not matching specified
	  alleles. Converting to NA. in: genotype(x, alleles = alleles,
	  allow.partial.missing = FALSE)
	  
	  ## New
	  
	  > genotype(x, alleles=alleles, allow.partial.missing=FALSE)
	  [1] NA NA "A/A" NA NA "B/A" "B/B"
	  Alleles: B A
	  Warning message: Found data values not matching specified
	  alleles. Converting to NA. in: genotype(x, alleles = alleles,
	  allow.partial.missing = FALSE)
	  
	  > genotype(x, alleles=alleles, allow.partial.missing=TRUE)
	  [1] NA "A/NA" "A/A" NA "B/NA" "B/A" "B/B"
	  Alleles: B A
	  Warning message: Found data values not matching specified
	  alleles. Converting to NA. in: genotype(x, alleles = alleles,
	  allow.partial.missing = TRUE)

2007-07-18 16:32  ggorjan

	* NEWS, R/genotype.R: There is no more warning in genotype() if
	  'a1' or 'a2' have NA value(s)
	  and 'alleles'' argument is specified, since NA is NA anyway
	  
	  Here is the example:
	  
	  ## Old
	  
	  > x <- c("C/C", "A/C", "A/A", NA, "C/B", "B/A", "B/B")
	  > alleles <- c("A", "B", "C")
	  > x <- genotype(x, alleles=alleles, reorder="yes")
	  Warning message:
	  Found data values not matching specified alleles. Converting to
	  NA. in: genotype(x, alleles = alleles, reorder = "yes")
	  > x
	  [1] "C/C" "A/C" "A/A" NA "B/C" "A/B" "B/B"
	  Alleles: A B C
	  
	  ## New
	  
	  > x <- c("C/C", "A/C", "A/A", NA, "C/B", "B/A", "B/B")
	  > alleles <- c("A", "B", "C")
	  > x <- genotype(x, alleles=alleles, reorder="yes")
	  > x
	  [1] "C/C" "A/C" "A/A" NA "B/C" "A/B" "B/B"
	  Alleles: A B C

2007-07-18 14:22  ggorjan

	* NEWS, R/diseq.R, man/diseq.Rd: really fixed printing of Obs vs
	  Exp freqs

2007-07-18 12:51  ggorjan

	* R/expectedGenotypes.R, man/expectedGenotypes.Rd: sort produced
	  genotypes

2007-07-18 12:19  ggorjan

	* R/expectedGenotypes.R: rollback one part

2007-07-18 12:09  ggorjan

	* R/plot.genotype.R, man/plot.genotype.Rd: fixing S3 type of
	  documentation + minor fix

2007-07-18 12:08  ggorjan

	* man/genotype.Rd, man/locus.Rd, man/print.LD.Rd,
	  man/summary.genotype.Rd: fixing S3 type of documentation

2007-07-18 11:57  ggorjan

	* NEWS, man/power.casectl.Rd: Fixed documentation of
	  power.casectrl() to match its code

2007-07-18 11:49  ggorjan

	* DESCRIPTION, NEWS, R/expectedGenotypes.R: added gtools to Depends
	  as needed by expectedGenotypes() + some minor fixes

2007-06-17 01:27  warnes

	* man/power.casectl.Rd: Update with Michael's latest changes

2007-06-17 01:25  warnes

	* R/power.casectl.plot.R: Move old code from power.casectl.R to
	  power.casectl.plot.R

2007-06-17 01:24  warnes

	* R/power.casectl.R: Update with Michael's latest changes

2007-05-29 19:35  warnes

	* NEWS: Add display of observed vs expected table to
	  print.HWE.test()

2007-05-29 19:34  warnes

	* DESCRIPTION, man/HWE.test.Rd: Add display of observed vs expected
	  table to print.HWE.test()

2007-05-29 19:29  warnes

	* R/HWE.test.R: Add display of observed vs expected table to
	  print.HWE.test()

2006-12-05 18:22  warnes

	* man/undocumented.Rd: Remove typo/dupliucate alias entry for
	  ci.balance

2006-12-05 17:45  warnes

	* NEWS: Update NEWS file for 1.2.0 and 1.2.1

2006-11-14 22:20  ggorjan

	* trunk/GeneticsBase/DESCRIPTION, trunk/GeneticsBase/R/convert.R,
	  trunk/GeneticsBase/TODO.txt, trunk/GeneticsBase/data/ALZH.ped,
	  trunk/GeneticsBase/data/CAMP.ped,
	  trunk/GeneticsBase/data/CAMPZ.phe,
	  trunk/GeneticsBase/data/qtl.ped, trunk/GeneticsBase/data/qtl.phe,
	  trunk/GeneticsBase/data/xbat.ped,
	  trunk/GeneticsBase/data/xbat.phe,
	  trunk/GeneticsBase/man/fastGrid.Rd,
	  trunk/GeneticsBase/man/makeMarkerInfo.Rd,
	  trunk/GeneticsBase/man/makeTransTable.Rd,
	  trunk/GeneticsBase/man/makeTransTableList.Rd,
	  trunk/GeneticsBase/src/convert.c,
	  trunk/PopGenetics/R/HWE.test.data.frame.R,
	  trunk/PopGenetics/R/expectedGenotypes.R,
	  trunk/PopGenetics/R/plot.genotype.R,
	  trunk/PopGenetics/inst/doc/example_data.csv,
	  trunk/PopGenetics/man/expectedGenotypes.Rd,
	  trunk/PopGenetics/man/plot.genotype.Rd, trunk/fbat/DESCRIPTION,
	  trunk/fbat/data/CAMP.ped, R/HWE.test.data.frame.R,
	  R/expectedGenotypes.R, R/plot.genotype.R,
	  inst/doc/example_data.csv, man/expectedGenotypes.Rd,
	  man/plot.genotype.Rd: Removing executable property

2006-11-11 04:10  warnes

	* DESCRIPTION: Update version number

2006-11-11 04:09  warnes

	* DESCRIPTION, inst/doc/genetics_article.tex, man/HWE.exact.Rd,
	  man/HWE.test.Rd, man/LD.Rd, man/binsearch.Rd, man/ci.balance.Rd,
	  man/diseq.Rd, man/genotype.Rd, man/gregorius.Rd,
	  man/homozygote.Rd, man/locus.Rd, man/makeGenotypes.Rd,
	  man/print.LD.Rd, man/summary.genotype.Rd, man/write.pop.file.Rd:
	  Update my email address

2006-10-02 13:21  weiliang_qiu

	* DESCRIPTION: add the 'BioCViews' tag with 'Genetics' as the
	  keyword to the
	  DESCRIPTION file

2006-03-10 18:19  nj7w

	* R/write.pedigree.file.R: Fixed a bug in function allele.number,
	  as pointed out by Chris Wallace

2005-11-10 15:28  warnes

	* man/HWE.exact.Rd, man/HWE.test.Rd, man/LD.Rd, man/binsearch.Rd,
	  man/ci.balance.Rd, man/diseq.Rd, man/genotype.Rd,
	  man/gregorius.Rd, man/homozygote.Rd, man/locus.Rd,
	  man/makeGenotypes.Rd, man/print.LD.Rd, man/summary.genotype.Rd,
	  man/write.pop.file.Rd: Update my email address

2005-11-09 17:05  warnes

	* DESCRIPTION: Update version number and release date

2005-11-09 17:04  warnes

	* R/HWE.test.R, R/LD.R, R/ci.balance.R, R/diseq.R, man/diseq.Rd:
	  Add R^2 to HWE and LD estimates

2005-11-08 20:54  warnes

	* R/summary.genotype.R: Fix Heterozygosity correction, per
	  Christopher Carlson
	  <csc47@u.washington.edu>:
	  > My second question is with regard to the summary.genotype
	  > function. The value you return for Heterozygosity (Hu) appears
	  to be
	  > 2pq*(n/(n-1)), but with n as the number of individuals. I
	  believe
	  > that the proper correction is for n/(n-1) where n is the number
	  of
	  > chromosomes, not the number of individuals. For a reasonable
	  number
	  > of samples the difference is subtle, but it threw off my
	  Tajima's D
	  > estimates when I used Hu to calculate nucleotide diversity.

2005-10-04 23:43  warnes

	* DESCRIPTION, NAMESPACE, R/diseq.R, R/expectedGenotypes.R,
	  R/power.casectl.R, R/print.LD.R, R/zzz.R: Move all dependency
	  checking into DESCRIPTION and NAMESPACES.

2005-10-04 16:30  warnes

	* R/plot.genotype.R: Fix handling of the 'type' argument.

2005-10-04 16:28  warnes

	* R/plot.genotype.R: Correct the handling of the 'what' argument.

2005-10-04 15:17  warnes

	* DESCRIPTION: Forgot to increment version

2005-10-04 15:15  warnes

	* DESCRIPTION: Update email address, version number, and date.

2005-10-04 15:13  warnes

	* R/diseq.R: Return NA and issue a warning if diseq() called on a
	  marker with
	  only one observed allele.

2005-09-14 18:45  ggorjan

	* R/plot.genotype.R: Now plot percentage by default i.e. no need
	  for argument in function call.

2005-08-18 19:39  nj7w

	* R/genotype.R: Fix bug in heterozygote when more than one
	  allele.name is provided

2005-03-13 01:23  warnes

	* R/library.R, man/library.Rd: Remove old backport of library()
	  commanad that is no longer needed.

2005-03-12 21:57  warnes

	* R/summary.genotype.R: Change 'persons' to 'samples' so that we
	  aren't human-specific.

2005-03-12 21:54  warnes

	* DESCRIPTION, NAMESPACE, man/expectedGenotypes.Rd,
	  man/plot.genotype.Rd: Fixes to pass R CMD check after addition of
	  expectedGenotypes() and
	  plot.genotype().

2005-03-12 20:23  warnes

	* R/plot.genotype.R, man/plot.genotype.Rd: Add plot.genotype()
	  contributed by Gregor GORJANC

2005-03-12 20:22  warnes

	* R/expectedGenotypes.R, man/expectedGenotypes.Rd: Add
	  expectedGenotypes() contributed by Gregor GORJANC

2005-03-09 19:49  warnes

	* man/makeGenotypes.Rd: Add description of the use of the 'method'
	  argument, and an example
	  showing the use of 'method=as.genotype.allele.count'.

2005-03-02 18:14  nj7w

	* NAMESPACE: Fixed NAMESPACE file to import na.omit function
	  explicitly from stats package.

2004-12-23 01:34  warnes

	* R/HWE.test.data.frame.R, inst/doc/LD.pdf,
	  inst/doc/example_data.csv, inst/doc/genetics_article.pdf: Check
	  in some files that seem to have been overlooked in the past.

2004-12-23 01:21  warnes

	* NEWS: Update for 1.1.2 (and 1.1.1).

2004-12-23 01:14  warnes

	* DESCRIPTION: Update version number.

2004-12-23 01:08  warnes

	* R/diseq.R: Remove debugging code that printed intermediate values
	  (sometimes a
	  lot of them).

2004-11-22 14:35  warnes

	* man/LD.Rd: Fix typos.

2004-11-15 16:36  warnes

	* DESCRIPTION: Update version.

2004-11-15 16:22  warnes

	* R/summary.genotype.R: Ensure that allele.freq table has the same
	  ordering as allele.names.

2004-11-15 16:20  warnes

	* R/HWE.test.R: remove triplicate comment

2004-11-15 15:34  warnes

	* man/HWE.chisq.Rd: Make it clear that the Yates continuty
	  correction is applied *only*
	  when simulate.p.value=FALSE, so that the reported test statistics
	  for simulate.p.value=FALSE and simulate.p.value=TRUE will differ.

2004-10-13 16:21  warnes

	* R/diseq.R, man/diseq.Rd: Attempt to fix/clarify HWE diseq.
	  computations & synchronize documentation.

2004-09-21 21:45  warnes

	* DESCRIPTION, NAMESPACE, NEWS, R/power.casectl.R,
	  man/HWE.chisq.Rd, man/HWE.exact.Rd, man/HWE.test.Rd,
	  man/ci.balance.Rd, man/diseq.Rd, man/genotype.Rd,
	  man/homozygote.Rd, man/locus.Rd, man/power.casectl.Rd,
	  man/summary.genotype.Rd, man/undocumented.Rd: Updated to use a
	  namespace and to work with the lastest gregmisc
	  bundle (previously a package).

2004-09-17 18:46  warnes

	* man/HWE.chisq.Rd, man/HWE.exact.Rd, man/HWE.test.Rd, man/LD.Rd,
	  man/binsearch.Rd, man/ci.balance.Rd, man/diseq.Rd,
	  man/genotype.Rd, man/gregorius.Rd, man/homozygote.Rd,
	  man/library.Rd, man/locus.Rd, man/makeGenotypes.Rd,
	  man/power.casectl.Rd, man/print.LD.Rd, man/summary.genotype.Rd,
	  man/undocumented.Rd, man/write.pop.file.Rd: Comments were
	  incorrectly marked by '#' instead of '%'.

2004-09-16 22:15  warnes

	* R/power.casectl.R: Changes from Michael Man.

2004-09-16 21:33  warnes

	* man/diseq.Rd: Match changes to print.diseq revision 1.16, which
	  restored ability
	  to show Observed vs. Expected table by addition an additional
	  potential value for the 'show' parameter: "table".

2004-09-16 21:22  warnes

	* NAMESPACE: Add namespace.

2004-09-15 18:32  warnesgr

	* R/diseq.R: Restore ability to show Observed vs. Expected table by
	  addition an
	  additional potential value for the 'show' parameter: "table".

2004-07-02 15:57  warnesgr

	* R/power.casectl.R, man/power.casectl.Rd: Add power.casectl
	  provided by Micheal Man.

2004-05-25 19:40  warnesgr

	* DESCRIPTION, R/genotype.R, R/print.LD.R, man/HWE.test.Rd,
	  man/binsearch.Rd, man/genotype.Rd, man/locus.Rd,
	  man/makeGenotypes.Rd, man/undocumented.Rd: Many fixex.

2004-03-25 17:15  warnesgr

	* R/ci.balance.R, man/ci.balance.Rd: Remove unused '...' argument
	  from ci.balance.

2004-02-02 15:55  warnesgr

	* R/ci.balance.R, R/diseq.R, man/ci.balance.Rd: - Rename ci.balance
	  'conf' parameter to 'confidence', and add 'alpha'
	  parameter to remove R CMD check warning.
	  
	  - modify diseq.ci to pass confidence level to ci.balance.

2004-02-02 15:46  warnesgr

	* man/homozygote.Rd: remove extraneous period from argument to
	  carrier.genotype.

2003-12-02 18:41  warnesgr

	* R/genotype.R: - remove depreciated (and error prone) use of
	  codes().

2003-12-02 18:37  warnesgr

	* R/print.LD.R: - Fixed bug: "D" was being reported when only "D'"
	  was requested.

2003-11-24 17:32  warnesgr

	* man/write.pop.file.Rd: - Fix the last broken fix.

2003-11-24 17:22  warnesgr

	* man/write.pop.file.Rd: Changes to fix latex'ing problem.

2003-08-04 14:18  warnesgr

	* DESCRIPTION, NEWS: - Updated NEWS and DESCRIPTION for version
	  1.0.2

2003-08-04 13:48  warnesgr

	* R/summary.genotype.R: - Fixed a bug in Heterozygosity (H) and PIC
	  calcuations caused by
	  using allele count rather than allele proportions. Bug reported
	  by
	  Gerard Tromp <tromp@sanger.med.wayne.edu>.

2003-07-30 20:39  warnesgr

	* R/hapmcmc.R: - Added hapmcmc code submitted by David Duffy.

2003-06-06 09:27  warnesgr

	* man/binsearch.Rd, man/library.Rd, man/print.LD.Rd: - Fix
	  fuction/documententation argument mismatch.
	  - Fix lack of LF at the end of a couple of files.

2003-06-05 22:06  warnesgr

	* R/summary.genotype.R: - Added code to show number of alleles,
	  number of individuals
	  genotyped, heterogyosity, and poly. information content based on
	  code contribued by David Duffy.

2003-06-04 21:22  warnesgr

	* R/plot.LD.R: - Modified string size to only leave vertical space
	  for the number of
	  elements that will be printed.

2003-06-04 21:22  warnesgr

	* R/genotype.R: - Somehow the assigment of the haplotype function
	  got messed up. Fixed.

2003-06-04 21:21  warnesgr

	* man/print.LD.Rd: - Updated manual to match code
	  - Replaced 'T' with 'TRUE'

2003-06-04 21:20  warnesgr

	* R/print.LD.R: - summary functions should have 'object' as the
	  first parameter.

2003-06-04 20:26  warnesgr

	* DESCRIPTION, NEWS, TODO: Updates for release 1.0.1.

2003-06-04 20:20  warnesgr

	* R/plot.LD.R, R/print.LD.R, man/print.LD.Rd: - Fixed mislabeling
	  of rows/columns in LDtable
	  - Extended LDtable to handle resizing text to fit area
	  - Extended LDtable to allow slection of what statistics are
	  displayed,
	  and which statistic is used for coloration.
	  - Extended LDtable to allow all columns & rows to be shown
	  - Added a larger example to documentation
	  - Changed the name of some function parameters to be more clear
	  and/or
	  consistent
	  - Added summary.LD.data.frame and print.LD.data.frame

2003-06-03 12:59  warnesgr

	* R/LD.R: - LD.genotype needs to reject haplotype objects since
	  these are not
	  yet supported by the code.

2003-06-03 11:41  warnesgr

	* R/genotype.R: - Fix handling of allele names when reorder="no".
	  Apparently,
	  unique() on a matrix now returns a matrix with unique *rows*
	  removed,
	  instead of a vector of unique *elements*. The consequence in this
	  case was that genotype(...,reorder="no") was generating a list of
	  alleles that was a matrix instead of a vector.

2003-05-30 16:08  warnesgr

	* man/locus.Rd: - added documentation for "value" option.

2003-05-30 15:52  warnesgr

	* R/library.R, R/zzz.R: - library.pos will now always be defined.
	  Instead of conditionally
	  defining library.pos, a check is made in .First.lib to see
	  whether
	  the system library function has a pos argument. If not, it uses
	  library.pos instead of library to load dependencies.

2003-05-29 02:27  warnesgr

	* inst/doc/genetics_article.tex: - added ld to conclusion text

2003-05-29 02:23  warnesgr

	* inst/doc/genetics_article.tex: Updated for version 1.0.0

2003-05-29 02:22  warnesgr

	* DESCRIPTION, NEWS: - Updated for 0.7.0

2003-05-29 02:20  warnesgr

	* inst/doc/genetics_article.tex: - Final version to send to Fritz.

2003-05-29 01:55  warnesgr

	* inst/doc/example.R, inst/doc/genetics_article.tex,
	  inst/doc/make_example_data.R: - Add R code to generate and demo
	  genetics package

2003-05-29 00:36  warnesgr

	* R/locus.R: - All arguments are now optional.

2003-05-29 00:35  warnesgr

	* R/genotype.R: - Fix problem with NA's caused by grep bug in R <=
	  1.7.0.

2003-05-28 20:28  warnesgr

	* man/locus.Rd: - Add getmarker, getgene, locus<- , marker<-, and
	  gene<- functions.

2003-05-28 20:26  warnesgr

	* man/write.pop.file.Rd: - Add URL for LinkDos

2003-05-28 20:26  warnesgr

	* man/undocumented.Rd: - Add alias for to shortsummary function.

2003-05-28 15:09  warnesgr

	* man/LD.Rd: - Added "locus<-", "marker<-", "gene<-", as well as
	  "getgene", "getmarker"

2003-05-28 15:04  warnesgr

	* man/library.Rd: - renamed library() to library.pos(). Updated
	  text to correcty note
	  that the backport is from 1.8.0.

2003-05-28 15:01  warnesgr

	* R/write.pedigree.file.R: - Renamed write.pedigree to
	  write.pedigree.file.
	  - Added URL of LinkDos software.

2003-05-28 14:57  warnesgr

	* R/library.R, R/zzz.R: - Rename library to library.pos

2003-05-28 14:56  warnesgr

	* R/locus.R: - Added "locus<-", "marker<-", "gene<-", as well as
	  "getgene", "getmarker"

2003-05-27 21:18  warnesgr

	* R/print.LD.R, man/print.LD.Rd: - Added show.all argument
	  - Fixed code that omits blank row/column

2003-05-27 19:37  warnesgr

	* man/write.pop.file.Rd: - Add documentation for write.pop.file,
	  write.pedigree.file, write.marker.file.

2003-05-27 18:45  warnesgr

	* man/diseq.Rd, man/genotype.Rd, man/makeGenotypes.Rd,
	  man/summary.genotype.Rd: - Fix typos, update arguments to match
	  changes to code

2003-05-27 18:43  warnesgr

	* R/library.R, man/library.Rd: - Added temporary copy of library()
	  function. This copy will only be
	  installed if the global library() function does not define a
	  'pos'
	  argument. This code was backported from R-devel, and R 1.7.1 and
	  later will include it as part of base.

2003-05-27 18:41  warnesgr

	* R/write.pedigree.file.R, R/write.pop.file.R: - Add utility
	  functions to write pedigree, 'pop', and marker files
	  which are used to transfer data to genetics applications.

2003-05-27 18:36  warnesgr

	* R/zzz.R: - Use new library function to load MASS in search
	  position *3* before
	  loading gregmisc. This prevents the genotype dataset in MASS from
	  hiding the genotype function here.

2003-05-27 18:35  warnesgr

	* R/genotype.R: - fixed handling of genotype("") and similar
	  - improvements to "[<-.genotype", it now automatically converts
	  the
	  second argument to a genotype object.

2003-05-27 18:33  warnesgr

	* R/diseq.R: - Add call item to diseq.object giving original
	  function call
	  - Fixed bug in testing for 2 x 2 allele case

2003-05-27 18:32  warnesgr

	* R/plot.LD.R, R/print.LD.R, man/print.LD.Rd: - Add plot and print
	  methods for LD objects.

2003-05-27 18:30  warnesgr

	* R/LD.R: - Found and fixed bug in likelihood computation. The
	  count table
	  needed to be organized with high-frequency alleles in the upper
	  left
	  corner instead of the lower right corner.

2003-05-22 17:25  warnesgr

	* R/HWE.chisq.R, R/HWE.exact.R, R/HWE.test.R, R/LD.R,
	  R/binsearch.R, R/ci.balance.R, R/genotype.R, R/gregorius.R,
	  R/locus.R, R/makeGenotypes.R, R/plot.LD.R, R/print.LD.R,
	  R/summary.genotype.R, R/zzz.R: - Remove CVS Log tag, which was
	  eating up too much space. Just use
	  'cvs log' to get the comments if needed!

2003-05-22 16:22  warnesgr

	* R/LD.R, R/plot.LD.R, R/print.LD.R: - moved LD printing functions
	  to print.LD.R
	  - moved LD plotting functions to plot.LD.R
	  - fixed problems in print.LD.data.frame
	  - enhanced plot.LD.data.frame
	  - other small changes

2003-05-21 20:03  warnesgr

	* R/makeGenotypes.R: - Remove stray character that caused a syntax
	  error.

2003-05-21 20:03  warnesgr

	* R/summary.genotype.R: - Fix handling of genotype summary when
	  called from
	  summary.data.frame. Was broken by too-broad search and
	  replace... but the changes motivated enhancements. ;^)

2003-05-21 19:57  warnesgr

	* DESCRIPTION, R/zzz.R: - Added dependency on gregmisc package.

2003-05-21 19:46  warnesgr

	* R/LD.R, man/LD.Rd, man/print.LD.Rd: - Improvements to LD code and
	  documentation.

2003-05-20 16:46  warnesgr

	* R/makeGenotypes.R, man/makeGenotypes.Rd: - Reduce stringency for
	  considering a variable a genotype.

2003-05-20 16:43  warnesgr

	* R/LD.R, man/LD.Rd: - Add code & (incomplete) docs for linkage
	  disequilibrium

2003-05-16 18:39  warnesgr

	* DESCRIPTION, R/makeGenotypes.R, inst/doc/Rnews.sty,
	  inst/doc/genetics_article.tex, man/makeGenotypes.Rd: - Updated to
	  version 0.7.0
	  - Made changes to pass R CMD check

2003-05-16 15:50  warnesgr

	* R/makeGenotypes.R, man/makeGenotypes.Rd: - Added
	  makeGenotypes/makeHaplotypes to help convert variables in
	  dataframes to genotype/haplotype variables.

2003-04-07 20:30  warnesgr

	* R/diseq.R, man/diseq.Rd: - Flipped sign of D, D', r. Now D
	  matches sign given in Weir's book,
	  and r has the proper sign.

2003-03-07 14:52  warnesgr

	* R/HWE.exact.R, man/HWE.exact.Rd: - Modified HWE.exact to return
	  an object of class 'htest'
	  - Noted this change in the man file and added HWE.chisq to list
	  of
	  links and to example code.

2003-03-07 14:49  warnesgr

	* DESCRIPTION: - Updated version number to 0.6.7.

2003-03-07 14:47  warnesgr

	* man/HWE.test.Rd: - Added links to HWE.chisq, HWE.exact, genotype
	  to see also seciton.
	  - Slighlty modified example code.

2003-03-07 14:44  warnesgr

	* NEWS: - New file

2003-03-07 14:33  warnesgr

	* R/genotype.R, man/genotype.Rd: - Added nallele function to
	  compute the number of alleles.

2003-03-07 14:32  warnesgr

	* R/HWE.chisq.R, R/HWE.test.R, man/HWE.chisq.Rd, man/HWE.test.Rd: -
	  Created HWE.chisq, HWE.chisq.genotype and corresponding man page.
	  - Moved computation of Chisquare test for HWE from
	  HWE.test.genotype
	  to HWE.chisq.genotype.
	  - Added option (on by default) to compute the exact p-value using
	  HWE.exact.
	  This is on by default when nallele=2

2003-02-03 16:13  warnesgr

	* DESCRIPTION, inst/doc/genetics_article.tex, man/HWE.exact.Rd,
	  man/binsearch.Rd, man/gregorius.Rd: - Fixed typos and R CMD check
	  warnings.
	  - Updated version number
	  - Removed 'data' directory to fix new R CMD check warning.

2002-12-11 21:29  warnesgr

	* R/binsearch.R: - fixed typo

2002-12-11 21:07  warnesgr

	* R/binsearch.R, R/gregorius.R, man/binsearch.Rd, man/gregorius.Rd:
	  - Moved binsearch() into a separate file and added documentation.
	  - Simplified and documented binsearch() code.
	  - binsearch() now detects whether the function is increasing or
	  decreasing and acts accordingly.
	  - Updated gregorius() to use the modified binsearch.

2002-12-10 20:36  warnesgr

	* man/gregorius.Rd: - Updated title/description

2002-12-10 20:33  warnesgr

	* R/gregorius.R, man/gregorius.Rd: - Implemented gregorius()
	  function, replacing data frame gregorius.
	  - Re-created corresponding help page.

2002-12-02 17:23  warnesgr

	* man/gregorius.Rd: - Added cvs tags to header of gregorius.Rd

2002-12-02 17:13  warnesgr

	* data, data/00Index, data/gregorius.R, man/gregorius.Rd: - Added
	  data set (and documentation) 'gregorius' which contains
	  necessary samples sizes to detect alleles.

2002-12-02 16:16  warnesgr

	* man/HWE.exact.Rd: - Added HWE.exact.Rd.

2002-12-02 16:12  warnesgr

	* R/HWE.exact.R: - Now returnes only the computed P-value.

2002-12-02 15:40  warnesgr

	* R/HWE.exact.R: - Added code for HWE.exact, based on contributed
	  function by David
	  Duffy <davidD@qimr.edu.au>

2002-11-27 15:32  warnesgr

	* DESCRIPTION, R/HWE.test.R, R/diseq.R, R/genotype.R, TODO,
	  inst/doc/genetics_article.tex, man/HWE.test.Rd,
	  man/ci.balance.Rd, man/diseq.Rd, man/genotype.Rd, man/locus.Rd,
	  man/summary.genotype.Rd, man/undocumented.Rd: Correct spelling
	  errors and typos.

2002-11-13 20:18  warnesgr

	* DESCRIPTION: - Fix typo.

2002-11-12 19:59  warnesgr

	* DESCRIPTION, R/diseq.R, R/genotype.R: - Changes to remove
	  warnings generated by 'R CMD check'.

2002-11-12 19:58  warnesgr

	* man/HWE.test.Rd, man/ci.balance.Rd, man/diseq.Rd,
	  man/genotype.Rd, man/homozygote.Rd, man/locus.Rd,
	  man/summary.genotype.Rd, man/undocumented.Rd: - Changes to remove
	  warnings generated by 'R CMD check'.

2002-11-12 17:57  warnesgr

	* R/zzz.R: - diseq.ci now requires the combinat library instead of
	  boot.

2002-11-12 05:53  warnesgr

	* examples/test.ci.R: - Checkin of test.ci.R

2002-11-12 05:31  warnesgr

	* DESCRIPTION: - Bump version number

2002-11-12 05:31  warnesgr

	* R/genotype.R, R/locus.R, man/diseq.Rd, man/genotype.Rd,
	  man/homozygote.Rd: - Fix mismatches between documentation and
	  code that we generating
	  warning messages.

2002-11-11 22:56  warnesgr

	* R/diseq.R: - Added minval and maxval to ci.balnance call() in
	  diseq.ci()
	  - Fixed typo in output text.

2002-11-08 21:07  warnesgr

	* DESCRIPTION, R/genotype.R, R/summary.genotype.R, TODO,
	  man/HWE.test.Rd, man/genotype.Rd, man/homozygote.Rd,
	  man/locus.Rd, man/summary.genotype.Rd, man/undocumented.Rd: -
	  DESCRIPTION: Updated version number and date
	  - TODO: Updated todo list.

2002-11-08 19:54  warnesgr

	* tests, tests/ci.balance.R: Added tests for ci.balance() functon.

2002-11-08 19:53  warnesgr

	* R/ci.balance.R, R/diseq.R, man/ci.balance.Rd, man/diseq.Rd: -
	  Moved ci.balance() to a separate file and created a documenation
	  file for it.
	  - Modified ci.balance to better annotate when it uses boundary
	  values.
	  - Modified diseq.ci to better provide warning message when the
	  number of
	  alleles is greater than 3.

2002-11-08 17:20  warnesgr

	* R/HWE.test.R, R/diseq.R: - Added test for more than two alleles
	  to diseq.ci. If there are more
	  than two, generate a warning message indicating that confidence
	  intervals for values near 0 and 1 are ill-behaved. When
	  'correct=TRUE' use ci.balance to attempt to correct for this.
	  - Modified HWE.test to display warnings from diseq.ci.

2002-11-07 19:13  warnesgr

	* R/diseq.R: - Fixed code so that gentypes with some listed allele
	  not observed are
	  handled properly. For example, if we have "A/A", and "A/B", but
	  no
	  "B/B", or worse yet when we know that "A" and "B" allels are both
	  possible but we only see one.

2002-10-28 18:20  warnesgr

	* R/genotype.R: - Allow allele names to be specified for
	  as.genotype.allele.count().

2002-10-28 18:19  warnesgr

	* R/summary.genotype.R: - Fixed for syntax error in
	  summary.genotype()

2002-10-28 18:19  warnesgr

	* R/HWE.test.R, R/diseq.R: - Lots of changes to the disequlibrim
	  computation and confidence interval code.
	  - D, D', and R are now computed
	  - Overall values are reported *with sign* of the number of
	  alleles is 2
	  - Bootstrapping code is now more efficient
	  
	  - Changes to HWE.test() and print.hwe.test() corresponding to the
	  above changes

2002-10-24 21:43  warnesgr

	* DESCRIPTION, R/diseq.R, R/genotype.R, man/genotype.Rd: - Fixed
	  bug as.genotype.alllele.count() introduced when 'harmonizing'
	  methods
	  with generics.
	  - Added 'alleles' arguments to the as.genotype.alllele.count()
	  function.
	  - Added example code for as.genotype.alllele.count() to doc file.
	  - Added explicit mention of as.genotype.alllele.count() to doc
	  file.

2002-10-11 18:01  warnesgr

	* R/HWE.test.R, R/diseq.R, R/zzz.R: Updated version number.

2002-09-30 14:35  warnesgr

	* R/diseq.R: - Modified diseq() to retain sign on the overall
	  disequlibrium estimate
	  - Modified diseq.ci() to use percentile confidence intervals

2002-09-24 01:53  warnesgr

	* DESCRIPTION: - Updated version number
	  - Added 'computing disequilibrium' to description text.

2002-09-24 01:32  warnesgr

	* R/HWE.test.R, R/diseq.R, R/genotype.R, R/zzz.R, man/HWE.test.Rd,
	  man/diseq.Rd, man/genotype.Rd, man/summary.genotype.Rd: -
	  'Un-genericized' diseq()
	  - Moved documentation of diseq() and diseq from HWE.test.Rd to
	  diseq.Rd
	  - Cleaned up HWE.test.Rd and diseq.Rd
	  - Fixed broken class check in diseq() and diseq.ci()
	  - Removed allele.count.default() -- this will force the user to
	  explicitly call 'genotype' on the data to use allele.count().
	  - Added zzz.R to require package 'boot'

2002-09-24 00:02  WarnesGR

	* R/HWE.test.R, R/diseq.R, man/HWE.test.Rd: - Moved code that
	  computed D-hat to diseq() and diseq.genotype() in diseq.R.
	  - Added diseq.ci() to compute confidence interval for D-hat.
	  - Added code to call diseq() and diseq.ci() from HWE.test()
	  - Added arguments to HWE.test() and print.HWE.test() to control
	  these new features
	  - Added text to HWE.test.Rd documenting these new functions and
	  arguments

2002-09-23 20:08  warnesgr

	* R/genotype.R: - Added as.genotype.table()

2002-06-27 18:46  warnesgr

	* inst/doc/genetics_article.tex: - More revisions. Hopefully last
	  set before submission to publication
	  review.

2002-06-27 18:46  warnesgr

	* R/HWE.test.R, examples/HWE_Test.R: - Allow user to specify
	  parameters for the chisquare test.

2002-06-25 21:38  warnesgr

	* inst/doc/genetics_article.tex: - Fixed syntax errors
	  - Some reorganization

2002-06-19 11:17  warnesgr

	* man/locus.Rd: - Fixed typo in \seealso.

2002-06-19 10:34  warnesgr

	* inst/doc/genetics_article.tex: Much enhancement, including
	  addition of example section.

2002-06-19 00:13  warnesgr

	* R/HWE.test.R: - Fixed bug that caused 'Error: subscript out of
	  bounds' when a 2
	  allele genotype had 1/1 and 1/2 but not 2/2.

2002-06-18 20:42  warnesgr

	* DESCRIPTION: Updated version.

2002-06-18 20:41  warnesgr

	* R/genotype.R, man/summary.genotype.Rd: - Fixed a bug in
	  allele.count that resulted in infinite recuresion.
	  - Modified documentation to match changed code.

2002-06-18 19:38  warnesgr

	* DESCRIPTION, R/genotype.R, R/summary.genotype.R, man/HWE.test.Rd,
	  man/genotype.Rd, man/locus.Rd, man/summary.genotype.Rd: Changes
	  to fix problems reported by R CMD check.

2002-05-06 18:35  swietm

	* 7, TODO: Testing CVS functionality. Removed addewd characters to
	  TODO

2002-05-06 18:31  swietm

	* 7, TODO: This was a test to learn how to add and modify files
	  using CVS

2002-04-09 00:49  warneg

	* inst, inst/doc, inst/doc/Rnews.sty,
	  inst/doc/genetics_article.tex: - Initial checkin of article
	  sources

2002-04-08 23:24  warneg

	* DESCRIPTION, man/homozygote.Rd: First checkin after moving
	  repository from tuwein.

2002-04-08 23:23  warneg

	* man/genotype.Rd: - Noted that when the user specifies the alleles
	  non-matching elements
	  are converted to NAs.

2002-04-08 23:19  warneg

	* R/genotype.R: - Modified 'genotype' function so that when the
	  user specifies the
	  alleles non-matching elements are converted to NAs.

2002-02-21 03:09  warnes

	* R/genotype.R, man/genotype.Rd, man/undocumented.Rd: - Add
	  as.factor.genotype.

2002-02-14 12:55  warnes

	* DESCRIPTION: Rephrased description.

2002-02-14 12:55  warnes

	* R/HWE.test.R, R/genotype.R: Fixed bugs in [.genotype and
	  [.haplotype.
	  
	  - There was a serious typo that would have been cought had I just
	  done
	  R CMD check.
	  
	  - Revamped [.genotype and [.haplotype to work correctly and to
	  avoid
	  the overhead of calling genotype() or haplotype() when drop=T. I
	  think these finally work properly.

2002-02-14 12:48  warnes

	* man/HWE.test.Rd, man/genotype.Rd, man/undocumented.Rd: - Added
	  'keywords' to HWE.test
	  - Create undocumented.Rd to satisfy documentation requiremets for
	  objects not otherwise included in documentation
	  - Add 'alais' commands noting that 'genotype' and '[.haplotype'
	  are
	  documented here.

2002-02-14 12:37  warnes

	* man/genotype.Rd: - Small change to the example code.

2002-02-09 00:47  warnes

	* R/genotype.R: - Fixed the changes to "[.genotype" and
	  "[.haplotype". I was
	  incorrectly coping *all* of the attributes in the case of drop=T.
	  This caused mis-labeling of the underlying factor levels.

2002-02-07 17:08  warnes

	* man/genotype.Rd: Added examples related to two bugs,
	  - == with non-genotype/non-haplotype rhs, and
	  - [...,drop=T] .

2002-02-07 16:57  warnes

	* R/genotype.R: Fixed two bugs
	  
	  1) "[.genotype" and "[.haplotype" didn't have the 'drop'
	  argument, so
	  an error would be generated when used in a context that expected
	  it (like
	  lm(..., subset=something) ).
	  
	  I've implemented these so that drop=T not only drops unused
	  factor
	  levels, but also drops unused *allele* levels.
	  
	  2) "==.genotype" and "==.haplotype" didn't handle second
	  arguments that
	  weren't genotypes / haplotypes, so
	  x <- genotype( "A/B" )
	  x == "A/B"
	  would generate an error. Solved by converting the y argument to a
	  genotype / haplotype before the comparison.
	  
	  Note that if the lhs is a genotype this means
	  x == "A/B"
	  and
	  x == "B/A"
	  give the identical results.

2001-08-13 15:36  warnes

	* R/HWE.test.R: BUGFIX: Corrected problem where the allele order
	  was not consistent between
	  the first (Observed #) and second columns (Expected #) of the
	  HWE.test table. This caused incorrect values for Obs-Exp to
	  be calcuated, as well as incorrect D-hat estimates.
	  Fortunately, it did not effect the correctness of the test
	  statistic or p-value, since these were computed via the chisq
	  function.

2001-08-03 11:33  warnes

	* DESCRIPTION, man/genotype.Rd: Minor changes.

2001-06-28 19:26  warnes

	* R/chisq.test.R: Will let Fritz and Kurt negotiate any
	  changes/modifications to chisq.test.

2001-06-28 19:23  warnes

	* R/genotype.R: Minor change, mask off extra attributes when
	  calling print() to
	  dislplay genotype data.

2001-06-28 19:15  warnes

	* man/HWE.test.Rd: - Updated to match v1.4 of HWE.test.R.
	  
	  - Added CVS id and log fields to file.

2001-06-28 19:14  warnes

	* R/HWE.test.R: - Modified to use
	  chisq.test(...,simulate.p.value=T,B=10000) to use
	  simulated p-value so that assumptions underlying Chi-square
	  approximation need not hold. This particularly useful for small
	  sample sizes or when some allele pairs are not observed.
	  
	  - Now gives a table of observed counts, observed frequency,
	  expected
	  frequency, and disequilibrium statistic (D-hat) for each pair of
	  alleles in addition to the overall disequilibrium statistic
	  (D-hat).

2001-06-15 17:02  warnes

	* DESCRIPTION, R/HWE.test.R, R/chisq.test.R, R/genotype.R, TODO,
	  examples/Genomics.examples, man/HWE.test.Rd, man/genotype.Rd,
	  man/homozygote.Rd, man/locus.Rd, man/summary.genotype.Rd: -
	  Modified HWE.test to use chisq.test. Added a modified version of
	  chisq.test until the (minor) changes show up in ctest.
	  
	  - Fixed documentation links and alias omissions
	  
	  - Fixed getallele() to snag allele element or attribute if either
	  is
	  present. This makes it work for summary.genotype as well as for
	  genotype.

2001-06-13 20:00  warnes

	* R/summary.genotype.R: - Added "allele.names" attribute.

2001-06-13 17:03  warnes

	* R/HWE.test.R, man/genotype.Rd: - Updated HWE.test.R to not assume
	  that a summary.genotype object
	  contains the original genotype object.
	  
	  - Removed a duplicate link to "allele.names" from genotype.Rd.

2001-05-30 22:15  warnes

	* man/HWE.test.Rd: Added HWE.test.Rd to document HWE.test.

2001-05-30 22:12  warnes

	* R/HWE.test.R, R/genotype.R, R/locus.R, TODO,
	  examples/Genomics.examples, man/genotype.Rd, man/homozygote.Rd,
	  man/summary.genotype.Rd: Updated documentation mostly. Added
	  as.character.genotype().

2001-05-30 22:03  warnes

	* man/locus.Rd: Initial version of locus.Rd.

2001-05-29 17:42  warnes

	* man/summary.genotype.Rd: Updated to note that row for NA is only
	  present if the data contains
	  NA. Corresponds to revision 1.2 of summary.genotype.R.

2001-05-29 17:38  warnes

	* man/genotype.Rd, man/summary.genotype.Rd: Modified seealso().

2001-05-29 17:16  warnes

	* man/homozygote.Rd: Completed homozygote.Rd which documents
	  homozygote(), heterozugote(),
	  carrier(), allele(), and allele.cound().

2001-05-29 10:27  leisch

	* R/summary.genotype.R: add NA line only if NA's are present

2001-05-26 00:28  warnes

	* man/homozygote.Rd: Partially completed man/homozygote.Rd
	  containing documentation for
	  homozygote(), heterozygote(), carrier(), allele.count(), and
	  allele().

2001-05-26 00:26  warnes

	* R/genotype.R: Removed allele.ind() and added "any" parameter to
	  carrier(). When
	  more than one allele is selected, or when no alleles are slected
	  and
	  any=F, carrier() now acts as allele.ind() did.
	  
	  Modified allele.count() to have similar behavior.

2001-05-25 23:39  warnes

	* man/genotype.Rd: Added man/genotype.Rd to document genotype and
	  haplotype classes in
	  R/genotype.R.

2001-05-25 23:37  warnes

	* R/genotype.R, R/summary.genotype.R, man, man/summary.genotype.Rd:
	  Moved summary.genotype and print.summary.genotype into a separate
	  file
	  (R/summary.genotype.R). Added man/summary.genotype.Rd containing
	  documentation for summary.genotype.

2001-05-22 20:26  warnes

	* R/Gene.R, R/Genomics.R: classes defined in Gene.R substantially
	  rewritten and moved to locus.R.
	  
	  Contents of Genomics.R moved to genotype.R.

2001-05-22 20:23  warnes

	* examples/locus.example.R: Added more examples

2001-05-22 19:00  warnes

	* examples/locus.example.R: Initial checkin of test script for code
	  in locus.R.

2001-05-22 18:58  warnes

	* R/locus.R: - Renamed "location.X" to "as.character.X" to better
	  represent thier
	  function. (Note as.character isn't generic at the moment, so
	  these
	  functions must be called directly.)
	  
	  - added function getlocus() to grab the appropriate locus field
	  or
	  attribute from an arbitrary object.

2001-05-22 18:53  warnes

	* R/genotype.R: - Renamed "genotype.R" from "Genomics.R".
	  
	  - Added slot for "locus" into genotype class.
	  
	  - Made allele.count, allele.ind, heterozygote, homozygote, and
	  carrier
	  return objects with the same class and created print.X routines.
	  This enabled the next item..
	  
	  - Made "locus" propagate to summary, HWE.test, allele,
	  allele.count,
	  allele.ind, heterozygote, homozygote, and carrier. This should
	  make
	  it easier to keep track of what locus each of these correspond
	  to.
	  **This may create unanticipated side effects**

2001-05-22 18:21  warnes

	* R/locus.R: Created classes for "locus", "gene", and "marker"
	  along with basic
	  methods is.X, print.X, and generic utility function "location",
	  which
	  formats the locus infromation for printing.

2001-05-16 12:58  leisch

	* R/Genomics.R: cosmetics

2001-05-16 12:55  leisch

	* R/Genomics.R: genotype: bugfix for non-character allele vectors
	  (e.g., integers)
	  a2 is now ignored if a1 is a genotype
	  a1 can now also be a 2 column matrix of alleles

2001-05-10 16:15  leisch

	* DESCRIPTION: update

2001-05-10 16:07  leisch

	* R/Genomics.R: cosmetics

2001-05-07 13:22  warnes

	* examples, examples/Allele_Freq.R, examples/Allele_Freq.out,
	  examples/Examples.new, examples/Examples.out,
	  examples/Gene.examples, examples/Genomics.examples,
	  examples/HWE_Test.R, examples/HWE_Test.out,
	  examples/test.data.2.txt, examples/test.data.txt: Added example
	  files, code, and output.

2001-05-07 13:21  warnes

	* R, R/Gene.R, R/Genomics.R: Imported R code for
	  
	  - Genotype and Haplotype classes,
	  - corresponding summary function (gives allele and genotype
	  frequencies)
	  - Hardy-Weinburg Equilibrium testing.
	  
	  Also, a initial try at a Gene and Marker classes.

2001-05-03 13:07  leisch

	* ., DESCRIPTION: Initial revision