This repository was archived by the owner on Feb 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog
More file actions
1404 lines (852 loc) · 36.3 KB
/
ChangeLog
File metadata and controls
1404 lines (852 loc) · 36.3 KB
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
2009-01-23 16:42 kevin
* Makefile.in, aclocal.m4, configure, configure.in, depcomp,
src/Makefile.am, src/Makefile.in, src/compute_classes.hpp: update
to make package 0.7.2
2009-01-23 16:41 kevin
* src/MKtest.cc: added #include <limits>
2008-08-21 09:02 kevin
* aclocal.m4, configure, configure.in: package 0.7.1
2008-08-21 09:02 kevin
* src/compute_classes.cc: changed declaration of "arg history" to
"Sequence::arg history" to fix an issue with compiling on OS X.
2008-01-22 09:46 kevin
* aclocal.m4, configure, configure.in: package 0.7.0
2008-01-22 09:45 kevin
* src/: HBKpermute.cc, Makefile.am, Makefile.in, compute.cc,
descPoly.cc, distance.cc, gestimator.cc, getopt.c, getopt.h,
getopt1.c, getoptFix.h, polydNdSbase.cc, rsq.cc, sharedPoly.cc,
snntest.cc: Updated use of "getopt" so that programs work on
Apple's "Leopard" (OS X 10.5.x). Testing suggests backwards
compatibility w/Tiger, too.
2007-11-29 09:38 kevin
* aclocal.m4, configure, configure.in, mkinstalldirs: package 0.6.9
2007-11-29 09:38 kevin
* src/: MKtestOutput.cc, Makefile.am, Makefile.in, chisq.c,
chisq.cc, chisq.h, chisq.hpp, compute_functions.cc, polydNdS.cc,
polydNdSbase.cc: updated code to be C99 compliant: uses isfinite
instead of finite. Changed the chisq files from C to C++ due to
odd linking problems that I could not figure out. (I was having
trouble compiling them as C then linking them to the C++ program.
The linker could not find isfinite)
2006-06-22 07:08 kevin
* ChangeLog, config.h.in, configure, configure.in: package 0.6.8
2006-06-22 05:04 kevin
* src/: Makefile.am, Makefile.in, snn.cc, snntest.cc: renamed
snn.cc snntest.cc
2006-06-21 17:18 kevin
* src/polydNdS.1: clarified documentation of -I option
2006-06-19 08:16 kevin
* src/: descPoly.1, descPoly.cc, polyCommon.cc, polyCommon.hpp:
site frequency spectrum is now either folded or unfolded, rather
than based on minor allele frequency (which was a half-assed
thing to do in the first place).
2006-06-19 08:14 kevin
* src/: compute_classes.cc, compute_functions.cc: now outputs
number of derived singletons for data sets with outgroup
2006-05-09 07:22 kevin
* src/: Makefile.am, Makefile.in: fixed bug in snn_SOURCE
2006-05-09 07:17 kevin
* configure, configure.in, debian/changelog, src/Makefile.am,
src/Makefile.in: package 0.6.8
2006-05-09 07:16 kevin
* src/snn.cc: program to execute Hudson's Snn test
2006-05-04 11:58 kevin
* src/compute_functions.cc: some changes to output to be more
R-friendly.
2006-05-04 11:45 kevin
* src/compute_classes.cc: added a missing output of '\n' so that
output from compute is as it should be when -V and -p are used in
combination
2006-03-05 13:39 kevin
* configure, configure.in, debian/changelog: package 0.6.7
2006-03-05 13:34 kevin
* src/compute_classes.cc: now output nan for undefined values of
Rmin
2005-09-20 11:54 kevin
* debian/changelog: package 0.6.6
2005-09-06 09:14 kevin
* src/polydNdS.1: updated man page to correctly describe -I
2005-08-31 07:55 kevin
* debian/changelog: corrected day entry for 0.6.6
2005-08-31 07:51 kevin
* configure, configure.in, debian/changelog: pacakge 0.6.6
2005-08-31 07:43 kevin
* src/compute_classes.cc: coalescent simulation now compatible with
libsequence 1.5.9
2005-08-31 07:42 kevin
* src/compute_functions.cc: changed output to be more R-friendly
2005-08-31 07:42 kevin
* src/compute.cc: when writing to a file, outfile stream is now
flushed to make sure that all output gets written
2005-06-07 04:17 kevin
* src/chisq.c: now checks that chisq values are finite, and if not,
gives nan as a pvalue
2005-06-06 04:55 kevin
* configure, configure.in, debian/changelog: package 0.6.5
2005-06-05 09:50 kevin
* src/compute_classes.cc: definition of removeFixedInsertions is no
longer recurive. The recursive implementation caused segfaults
on some systems when processing very large alignments
2005-05-27 13:05 kevin
* configure, configure.in, debian/changelog: package 0.6.4
2005-05-27 12:59 kevin
* src/: Makefile.am, Makefile.in: added requirement for gsl for
compute
2005-05-27 12:58 kevin
* src/MKtest.1: clarified some of the documentation
2005-05-27 12:57 kevin
* src/: compute_classes.cc, compute_classes.hpp,
compute_functions.cc: updated to coalescent simulation code in
libsequence 1.5.4
2005-04-29 12:40 kevin
* aclocal.m4, config.h.in, configure, configure.in,
debian/changelog: package 0.6.3
2005-04-29 12:38 kevin
* src/descPoly.cc: removed an extraneous ; that caused problems
with gcc 3.4
2004-11-03 14:19 kevin
* configure, configure.in, debian/changelog: package 0.6.2
2004-11-03 14:18 kevin
* src/rsq.cc: no longer outputs dij column
2004-11-03 14:18 kevin
* src/compute_classes.cc: no longer exits with error if outgroup
number is > 1
2004-10-05 12:07 kevin
* configure, configure.in, debian/changelog: package 0.6.1
2004-10-05 12:06 kevin
* src/compute.1: documented defining outgroup more accurately
2004-10-05 12:06 kevin
* src/CodonMaker.cc: added extra check to ensure codons chosen are
not identical
2004-10-05 12:05 kevin
* src/: cRPimpl.cc, cRPimpl.hpp, polydNdS.cc, polydNdSbase.cc:
fixed several "special case" bugs in processing coding regions.
Thanks to Josh Shapiro for pointing these out & providing fixes
2004-10-05 12:04 kevin
* src/: compute.cc, compute_classes.cc, compute_classes.hpp,
compute_functions.cc: better reporting of "not applicable" in
output when summary stats can't be calculated since there are too
few seg sites
2004-07-02 07:29 kevin
* src/compute_functions.hpp: changed function declarations
2004-07-02 07:29 kevin
* src/rsq.cc: now outputs both site positions and the distance b/w
sites
2004-07-02 07:26 kevin
* src/rsq.1: updated to new behavior of the Disequilibrium()
routine in libsequence
2004-04-14 10:43 kevin
* src/: Makefile.am, Makefile.in, compute.cc, compute_classes.cc,
compute_classes.hpp, compute_functions.cc, compute_functions.hpp:
compute is now object based rather than procedural
2004-04-12 15:12 kevin
* configure, configure.in, debian/changelog: package 0.6.0
2004-04-12 15:12 kevin
* src/compute_functions.cc: pvalue for fay-wu H now done correctly
2004-04-12 08:32 kevin
* debian/changelog: updated to 0.5.9-1, compiled vs libsequence
1.3.9
2004-04-08 07:00 kevin
* configure, configure.in, debian/changelog: package version 0.5.9
2004-04-08 06:57 kevin
* src/compute_functions.cc: removed use of deprecated header
<Sequence/Hudson2001.hpp>
2004-04-08 06:53 kevin
* src/MKtest.cc: added an extra check to the counting of fixed
differences that should prevent the possibility of (rare)
miscounts
2004-04-08 06:52 kevin
* src/polyCommon.cc: removed use of deprecated libsequence typedefs
2004-04-08 06:51 kevin
* src/: rsq.cc, sharedPoly.cc: removed inclusion of deprecated
libsequence headers
2004-02-02 09:36 kevin
* configure, configure.in, debian/changelog, debian/control:
package 0.5.8
2004-02-02 09:25 kevin
* src/: CodonMaker.cc, MKtest.cc, MKtestOutput.cc,
MKtestOutput.hpp, Makefile.am, Makefile.in, cRPimpl.cc,
cRPimpl.hpp, codingRegionProcessor.cc, codingRegionProcessor.hpp,
polydNdS.cc, polydNdSbase.cc, polydNdSbase.hpp, sharedPoly.cc:
calculation of silent and replacement poly now uses routines in
<Sequence/shortestPath.hpp>, allowing for a much cleaner
implementation of these programs
2004-01-20 12:22 kevin
* configure, configure.in, debian/changelog: package 0.5.7 : bugfix
release. SNP tables for MKtest now generated correctly
2004-01-20 12:12 kevin
* src/MKtest.cc: There was a bug in generating the SNP tables for
each locus. Josh Shapiro caught it, and its now fixed. They were
being generated from the data object, rather than gene1 and
gene2.
2004-01-19 06:04 kevin
* configure, configure.in, debian/changelog, src/Makefile.am,
src/Makefile.in: package 0.5.6 : autoconf now checks for GSL
headers. If they are present, -DHAVE_GSL is passed to the
compiler. This is used in MKtest to decide if the G-test and
chi-squared tests will be compiled in, which only happens if
HAVE_GSL is defined
2004-01-19 05:58 kevin
* src/: MKtest.cc, chisq.c, chisq.h, g2.c, g2.h: now checks for #if
defined (HAVE_GSL) to decide whether or not to calculate G-test
and chi-squared tests
2004-01-19 05:57 kevin
* src/cRPimpl.cc: simplified checking for stop codons
2004-01-19 05:56 kevin
* src/polyCommon.cc: uses Sequence::SEQMAXUNSIGNED now instead of
defining a new constant
2004-01-19 05:56 kevin
* src/: compute.cc, compute_functions.cc, compute_functions.hpp:
uses new implementation of coalescent algorithm
(Sequence::coalNoRec)
2004-01-12 15:35 kevin
* src/compute_functions.cc: now exits with error if input data
contain characters other than {A,G,C,T,N,-}
2004-01-12 08:08 kevin
* aclocal.m4, configure, configure.in, debian/changelog,
debian/control: package 0.5.4
2004-01-12 07:18 kevin
* src/: codingRegionProcessor.cc, codingRegionProcessor.hpp: new
files
2004-01-12 07:07 kevin
* src/compute.1: update to document new options
2004-01-12 07:06 kevin
* src/tstvbias.cc: cleanup
2004-01-12 07:06 kevin
* src/: MKtest.cc, cRPimpl.cc, gestimator.cc, translateCoding.cc:
updated to new header <Sequence/Translate.hpp>
2004-01-11 12:39 kevin
* src/compute_functions.cc: now removes sites with characters other
than {A,G,C,T}
2004-01-11 12:29 kevin
* src/: compute.cc, compute_functions.cc, compute_functions.hpp:
added new option, -N, to remove all sites w/missing data. Fixed
a bug in compute where the -b option had no effect if data were
input with the -h option
2003-11-11 07:49 kevin
* configure, configure.in, debian/changelog, debian/control,
src/Makefile.am, src/Makefile.in: package 0.5.4
2003-11-11 07:31 kevin
* src/: Fexact_main.cc, HBKpermute.cc, MKtest.cc, Makefile.am,
Makefile.in, compute.cc, compute_functions.cc, descPoly.cc,
distance.cc, extractCoding.cc, fexact.c, gestimator.cc,
int_handler.cc, polyCommon.cc, polydNdS.cc, polydNdSbase.cc,
polydNdSbase.hpp, rsq.cc, sharedPoly.cc, translateCoding.cc,
tstvbias.cc: Lots of changes: 1.) new classes for MKtest,
polydNdS to help streamline maintenance 2.) #include "foo.h"
changed to #include <foo.h> all over
2003-11-11 07:31 kevin
* src/: CodonMaker.cc, CodonMaker.hpp, Warnings.cc, Warnings.hpp,
cRPimpl.cc, cRPimpl.hpp: new classes to simplify
silent/replacement poly calculations
2003-11-11 07:27 kevin
* src/chisq.c: fixed bug that caused n to be calculated incorrectly
2003-10-28 12:19 kevin
* src/: tajd.cc, tajd.1: removed
2003-10-28 12:18 kevin
* src/gestimator.cc: cleanup
2003-10-27 11:25 kevin
* src/gestimator.cc: now exits with an error if infile cannot be
opened
2003-10-27 07:32 kevin
* src/MKtest.cc: cleanup
2003-10-27 07:29 kevin
* src/: MKtest.cc, polydNdS.cc, polydNdSbase.cc, polydNdSbase.hpp:
process_coding_region() in polydNdSbase.cc now returns a
container (class Warnings) containing any warnings that arose
during processing of the data. polydNdS.cc and MKtest.cc are
updated to print such data to stderr.
2003-10-27 07:15 kevin
* src/: MKtest.cc, extractCoding.cc, translateCoding.cc: now catch
exceptions when calling parseargs
2003-10-27 07:15 kevin
* src/polydNdSbase.cc: moved more error checking in parseargs from
cerr followed by exit(1) to an exception-based strategy
2003-10-26 09:23 kevin
* src/compute_functions.cc: now checks that data file can be
read...
2003-10-26 09:22 kevin
* src/polydNdS.cc: now makes sure that infile for alignment is
available for reading
2003-10-26 09:13 kevin
* src/: compute.cc, compute_functions.cc, compute_functions.hpp,
polydNdS.cc, polydNdSbase.cc, polydNdSbase.hpp, rsq.cc: now do
stricter checking to make sure infiles exist
2003-10-15 07:56 kevin
* src/gestimator.cc: now, all exceptions really are printed to
stderr :)!
2003-10-15 07:55 kevin
* src/gestimator.cc: fixed typo
2003-10-15 07:54 kevin
* src/gestimator.cc: output from all exception catching is now
output to stderr
2003-10-15 07:53 kevin
* src/: Makefile.in, translateCoding.cc: for translateCoding, will
default to translating the entire alignment if no other input are
given
2003-09-10 11:25 kevin
* src/: Correlations.hpp, Makefile.am, Makefile.in,
RandomNumbers.hpp, polydNdSbase.cc: added new files (to remove
dependency on my now-defunct cpptools package). modified
polydNdSbase.cc to compile in the face of the g++ bug that causes
infinited compiler recursion for templates in anonymous
namespaces
2003-09-08 07:38 kevin
* src/: extractCoding.cc, translateCoding.cc: added #include
<iostream>
2003-09-05 11:39 kevin
* src/: MKtest.cc, compute_functions.cc, compute_functions.hpp,
polydNdSbase.cc, polydNdSbase.hpp: removed references to
namespace Comparisons (which no longer exists), code now
namespace-clean in general
2003-09-03 09:02 kevin
* src/: HBKpermute.cc, MKtest.cc, chud.cc, compute_functions.cc,
compute_functions.hpp, descPoly.cc, distance.cc, dists.cc,
extractCoding.cc, gestimator.cc, polyCommon.cc, polyCommon.hpp,
polydNdS.cc, polydNdSbase.cc, polydNdSbase.hpp, rsq.cc,
sharedPoly.cc, translateCoding.cc, tstvbias.cc: updated to new
libsequence structure (#include<Sequence/foo.hpp>)
2003-08-13 09:50 kevin
* debian/changelog: package version 0.5.2
2003-08-13 09:49 kevin
* configure, configure.in: package 0.5.2
2003-08-13 09:47 kevin
* src/: polydNdS.1, polydNdS.cc: added -A option and documented it
in manpage
2003-08-07 07:34 kevin
* debian/changelog: package revision 0.5.1-2, compiled against
libsequence 1.3.2
2003-08-06 09:04 kevin
* configure, configure.in, debian/changelog, debian/control:
package 0.5.1
2003-08-06 09:03 kevin
* src/MKtest.1: added newline to fix formatting of manpage
2003-08-06 08:37 kevin
* src/sharedPoly.cc: machinery for calculations now uses class
Sequence::FST from libsequence
2003-07-25 10:53 kevin
* src/polydNdS.1: more changes
2003-07-25 10:50 kevin
* src/polydNdS.1: updated manpage
2003-07-25 10:46 kevin
* src/: MKtest.1, sharedPoly.1: updated manpages
2003-07-22 10:48 kevin
* debian/changelog: package version 0.5.0 (not 0.5.9!)
2003-07-22 10:44 kevin
* configure, configure.in, debian/changelog: package 0.5.0
2003-07-18 08:50 kevin
* src/sharedPoly.cc: rewrote code to handle all sorts of special
cases, including 3 mutations/site. These changes will eventually
be incorporated into the FST class in libsequence
2003-07-15 07:25 kevin
* Makefile.in, aclocal.m4, configure, configure.in,
debian/changelog: package 0.4.9
2003-07-15 07:16 kevin
* src/MKtest.cc: rewrote starting from a much simpler perspective.
now seems to work much better in general.
2003-07-15 07:16 kevin
* src/: polydNdSbase.cc, polydNdSbase.hpp: near-complete rewrite.
much simpler (and shorter) code does the same thing as the old,
clunky version.
2003-07-11 07:08 kevin
* src/: Makefile.am, Makefile.in: [no log message]
2003-07-11 07:06 kevin
* src/: polydNdSbase.cc, polydNdSbase.hpp: added option to
process_coding_region() to allow approximate treatment of
ambiguous/completely substituted codons. NOTE: not fully
implemented yet.
2003-07-11 07:05 kevin
* src/MKtest.cc: a near-complete re-write of the internals. added
options for approximate treatment of divergent codons when
calculating divergence.
2003-07-09 12:39 kevin
* src/: polydNdSbase.cc, polydNdSbase.hpp: MakeCodon() no longer
needs a PolySites*, various cleanup
2003-07-07 09:55 kevin
* src/translateCoding.cc: new file
2003-07-07 06:15 kevin
* src/polydNdSbase.cc: now outputs what the stop codon is when a
stop codon is encountered
2003-07-01 05:49 kevin
* src/: Makefile.am, Makefile.in: new program "Fexact"
2003-07-01 05:48 kevin
* src/sharedPoly.cc: added -v option for verbose output
2003-07-01 05:48 kevin
* src/polydNdSbase.hpp: added bool XtractFullCodons; to arguments
struct
2003-07-01 05:47 kevin
* src/polydNdSbase.cc: -X and -T options added to parseargs,
position of ambiguous pathways is now output
2003-07-01 05:47 kevin
* src/polydNdS.cc: cleanup of output code
2003-07-01 05:46 kevin
* src/extractCoding.cc: now deals with input of CDS intervals
better
2003-07-01 05:45 kevin
* src/compute_functions.cc: floats changed to doubles
2003-07-01 05:45 kevin
* src/MKtest.cc: program now accepts -T to output tab-delimited
table (not documented yet in man page)
2003-07-01 05:44 kevin
* src/Fexact_main.cc: new file
2003-06-18 09:07 kevin
* ChangeLog, configure, configure.in, debian/changelog: package
version 0.4.8
2003-06-18 09:04 kevin
* src/: MKtest.1, compute.1, polydNdS.1: updated manpages
2003-06-18 08:54 kevin
* src/: polydNdS.cc, polydNdSbase.cc, polydNdSbase.hpp: massive
bugfixes, diagnostic info now printed to stderr.
2003-06-18 08:54 kevin
* src/: Makefile.am, Makefile.in: new source files:
translateCoding.cc and extractCoding.cc
2003-06-18 08:52 kevin
* src/MKtest.cc: cleanup
2003-06-18 08:52 kevin
* src/extractCoding.cc: new program
2003-06-18 08:51 kevin
* src/compute_functions.cc: now, positions of SNPs are along the
alignment as it is input, rather than from the first ungapped
position
2003-06-07 13:25 kevin
* src/polydNdS.1: updated documentation
2003-06-07 13:20 kevin
* src/: Makefile.in, tstvbias.cc: cleanup
2003-06-07 12:45 kevin
* src/: HBKpermute.cc, Makefile.am, compute.cc,
compute_functions.hpp, descPoly.cc, distance.cc, polyCommon.cc,
polyCommon.hpp, polydNdS.1, rsq.cc, sharedPoly.cc, tstvbias.cc:
fixed includes for non-GNU systems. portability to gcc 2.95. now
use portability header getoptFix.h
2003-06-07 12:44 kevin
* src/getoptFix.h: portability header for getopt
2003-06-07 12:43 kevin
* src/: compute_functions.cc, gestimator.cc: changed an unsigned to
an int to remove compiler warning
2003-06-07 12:43 kevin
* src/: MKtest.cc, polydNdS.cc: now optionally skips missing data
using -S option from polydNdSbase.cc
2003-06-07 12:42 kevin
* src/polydNdSbase.hpp: added skipMissing to parameters struct
2003-06-07 12:42 kevin
* src/polydNdSbase.cc: -I option now works. Added -S option to
parseargs so that polydNdS and MKtest can optionally skip sites
w/missing data. Added #include<algorithm>
2003-06-05 06:26 kevin
* ChangeLog, configure, configure.in, debian/changelog: package
version 0.4.7
2003-06-03 14:19 kevin
* src/polydNdSbase.cc: fixed bug in InCoding(int site_index, const
vector<int> &intervals). The bug was that the value 1 was
subtracted from each interval position. This was incorrect
because the intervals are already indexes.
2003-06-03 11:58 kevin
* ChangeLog, configure, configure.in, debian/changelog,
src/Makefile.in: package version 0.4.6
2003-06-03 11:58 kevin
* src/Makefile.am: added manpages to source lists
2003-06-03 11:56 kevin
* src/: descPoly.1, descPoly.cc, sharedPoly.1: added man pages
2003-06-03 11:46 kevin
* src/: descPoly.cc, polyCommon.cc, polyCommon.hpp: new program
added (descPoly)
2003-06-03 08:51 kevin
* src/polydNdSbase.cc: Fixed bug in DetermineOnePoly(const
PolyTable *poly_table, int codon_pos,int i) that mistakenly
returned false for cases where there is only 1 SNP in the entire
data set.
2003-06-02 12:15 kevin
* src/polydNdS.cc: the previous "fix" for mis-assigned coding SNPs
was incorrect. This has now been fixed by using the InCoding()
routine
2003-06-02 10:26 kevin
* src/: Makefile.am, Makefile.in, compute_functions.cc,
polydNdS.cc, polydNdSbase.cc: cleanup
2003-06-02 08:20 kevin
* src/polydNdS.cc: fixed bug where sites that were skipped for some
reason in the coding region could be mistakenly considered to be
noncoding
2003-05-23 12:43 kevin
* src/sharedPoly.cc: added try/catch block
2003-05-23 12:32 kevin
* src/: Makefile.am, Makefile.in, sharedPoly.cc: added program
"sharedPoly"
2003-05-19 09:32 kevin
* configure, configure.in, debian/changelog: package 0.4.5
2003-05-16 15:04 kevin
* src/compute_functions.cc: updated code comments
2003-05-16 15:02 kevin
* src/compute_functions.cc: now, if there is no polymorphism in the
data, the following statistics are output as NA: Tajima's D,
Fu/Li statistics, Wall's statistics, Rmin, and Hudson's C
2003-05-16 14:30 kevin
* src/: Makefile.am, Makefile.in: removed tajd.1 from man_MANS so
that deb package can be built
2003-05-16 14:14 kevin
* configure, configure.in, debian/changelog: package 0.4.4
2003-05-16 14:02 kevin
* src/compute_functions.cc: now handles data with no seg sites
properly with -p option (outputs NA for each statistic)
2003-05-07 08:32 kevin
* src/g2.c: removed "adding 1 to everything" in the case of zero
counts. Just doesn't seem right to me...
2003-05-07 08:31 kevin
* src/: Makefile.am, Makefile.in: removed silly programs (that are
now replaced by msld and msstats packages anyways). added
manpage for MKtest
2003-05-07 08:30 kevin
* src/g2.c: removed all numerical recipes code.
2003-05-07 08:28 kevin
* src/MKtest.cc: halved number of loops over data structures. now
output chisquare and G-tests where possible
2003-05-07 08:27 kevin
* src/MKtest.1: added manpage
2003-05-07 08:26 kevin
* src/: chisq.c, chisq.h: added Yate's correction. Simplified
formula for calculation.
2003-05-06 11:50 kevin
* src/polydNdS.cc: code cleanup
2003-05-05 08:26 kevin
* configure, configure.in, debian/changelog: package 0.4.3
2003-05-05 08:24 kevin
* src/: Makefile.am, Makefile.in: MKtest removed from list of
programs to compile (not ready yet...)
2003-05-05 08:12 kevin
* src/: polydNdSbase.cc, polydNdSbase.hpp: fixed bug where codon
position of a mutation was incorrectly calculated. The bug was in
GetCodonPos()
2003-05-05 08:11 kevin
* src/polydNdS.cc: Pi is now output per site
2003-05-05 08:11 kevin
* src/g2.c: replaced computation of p-value by Num. Rec. code with
GSL routines
2003-05-05 08:08 kevin
* src/chisq.c: [no log message]
2003-05-05 08:08 kevin
* src/MKtest.cc: removed predicate functions (they didn't work :(
), now do calculations with explicit loops. Modified output
format.
2003-05-03 13:49 kevin
* src/: polydNdSbase.cc, polydNdSbase.hpp: fixed 2 bugs. The first
resulted in mis-assigning the position in a codon of mutations at
positions 1 or 2 (position 3 was fine). the second was a pass by
value of a vector instead of by reference.
2003-05-03 08:42 kevin
* src/: ctest.h, fexact.c: added source files for Fisher's exact
test, from the R project (http://www.r-project.org)
2003-05-03 08:41 kevin
* src/: HBKpermute.cc, MKtest.cc, Makefile.am, Makefile.in,
chisq.c, chisq.h, chud.cc, compute.cc, compute_functions.cc,
compute_functions.hpp, distance.cc, dists.cc, g2.c, g2.h,
gestimator.cc, polydNdS.cc, polydNdSbase.cc, polydNdSbase.hpp,
rsq.cc, tajd.cc, tstvbias.cc, tstvbias.hpp: reformatted files
with astyle. Added code for MK tests, which required pulling code
from polydNdS and putting it in polydNdSbase so the 2 programs
could share
2003-04-04 09:36 kevin
* src/gestimator.cc: removed out old (commented-out) code
2003-04-04 09:35 kevin
* src/gestimator.cc: only #include "Fasta.hpp" on non-GNU compilers
2003-04-04 08:55 kevin
* debian/changelog: updated package version #
2003-04-04 08:54 kevin
* configure, configure.in: package 0.4.2
2003-04-04 08:53 kevin
* src/rsq.cc: changed an #include directive to allow compilation on
systems without BOOST installed
2003-04-03 14:12 kevin
* src/: HBKpermute.cc, compute_functions.cc, distance.cc,
gestimator.cc, polydNdS.cc, rsq.cc: upgraded to take advantage of
explicit instantiations in libsequence
2003-04-03 08:52 kevin
* debian/changelog: updated package version #
2003-04-03 08:52 kevin
* configure: [no log message]
2003-04-03 08:37 kevin
* configure.in: updated package version to 0.4.1
2003-04-03 08:37 kevin
* src/polydNdS.cc: updated to new version of
Sequence::Aligment::Trim( const vector<T>& , const vector<int> &)
2003-04-02 08:45 kevin
* src/compute_functions.cc: added Wall's statistics to output
2003-04-02 08:45 kevin
* Makefile.in: [no log message]
2003-04-01 09:23 kevin
* Makefile.am, debian/README.debian, debian/analysis-doc.files,
debian/changelog, debian/control, debian/copyright,
debian/crontab.ex, debian/dirs, debian/diversions.ex,
debian/files, debian/inetd.conf.ex, debian/info.ex,
debian/init.d.ex, debian/manpage.1.ex, debian/menu.ex,
debian/rules, debian/substvars, debian/watch.ex: added debian
build dir
2003-03-24 08:05 kevin
* src/: HBKpermute.cc, chud.cc, compute_functions.hpp, distance.cc,
dists.cc, gestimator.cc, polydNdS.cc, tajd.cc: added "using
namespace Sequence"
2003-03-21 09:29 kevin
* configure, configure.in: package 0.4.0
2003-03-21 09:28 kevin
* src/: tstvbias.cc, tstvbias.hpp: updated to use
Sequence::stateCounter class
2003-03-21 09:28 kevin
* src/polydNdS.1: updated man page
2003-03-21 09:27 kevin
* src/polydNdS.cc: made reading in of file cleaner
2003-03-21 09:27 kevin
* src/: Makefile.am, Makefile.in: added HBKpermute
2003-03-21 09:27 kevin
* src/: HBKpermute.1, HBKpermute.cc: added program to package
2003-03-15 10:11 kevin
* src/compute_functions.cc: fixed error in output (forgot a tab in
outputting # Singletons)
2003-03-14 12:52 kevin
* src/: HBKpermute.cc, chud.cc, dists.cc, gestimator.cc,
polydNdS.cc, tajd.cc: update to PolySNP and PolySIM classes