├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── PartitionFinder.py ├── PartitionFinderMorphology.py ├── PartitionFinderProtein.py ├── README.md ├── clean_tests.sh ├── docs ├── Manual_v2.1.x.docx ├── Manual_v2.1.x.pdf ├── PartitionFinder2的一般使用方法(中文版-网页版).html ├── citationsplot.pdf ├── citationsplot2.pdf ├── downloadplot.r ├── downloadplot_combined.pdf ├── downloadplot_v1.pdf └── downloadstats.csv ├── examples ├── README.txt ├── aminoacid │ ├── partition_finder.cfg │ └── test.phy ├── morphology │ ├── partition_finder.cfg │ └── test.phy └── nucleotide │ ├── partition_finder.cfg │ └── test.phy ├── partfinder ├── __init__.py ├── algorithm.py ├── alignment.py ├── analysis.py ├── analysis_method.py ├── config.py ├── database.py ├── dependencies.py ├── entropy.py ├── kmeans.py ├── logtools.py ├── main.py ├── model_loader.py ├── model_utils.py ├── models.csv ├── morph_tiger.py ├── neighbour.py ├── parser.py ├── phyml.py ├── phyml_models.py ├── progress.py ├── raxml.py ├── raxml_models.py ├── reporter.py ├── results.py ├── scheme.py ├── submodels.py ├── subset.py ├── subset_ops.py ├── threadpool.py └── util.py ├── programs ├── README.md ├── phyml ├── phyml.exe ├── phyml.linux ├── raxml ├── raxml.exe ├── raxml.linux ├── raxml_pthreads ├── raxml_pthreads.exe └── raxml_pthreads.linux ├── tests ├── PF2 │ ├── __init__.py │ ├── missing-sites-warning │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── overlapping-blocks │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ └── test_pf2.py ├── __init__.py ├── all_succeed │ ├── 1subset │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── __init__.py │ └── test_all_success.py ├── cfg │ ├── __init__.py │ ├── test01.cfg │ ├── test02.cfg │ ├── test03.cfg │ ├── test04.cfg │ ├── test05.cfg │ ├── test06.cfg │ ├── test07.cfg │ ├── test08.cfg │ ├── test09.cfg │ ├── test10.cfg │ ├── test11.cfg │ ├── test12.cfg │ ├── test13.cfg │ ├── test14.cfg │ ├── test15.cfg │ ├── test16.cfg │ └── test_configs.py ├── christof │ ├── __init__.py │ ├── alignment-error │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── clustering-phyml-dna │ │ ├── partition_finder.cfg │ │ └── test.phy │ ├── clustering-raxml-dna │ │ ├── partition_finder.cfg │ │ └── test.phy │ ├── greedy-phyml-dna │ │ ├── partition_finder.cfg │ │ └── test.phy │ ├── greedy-phyml-protein │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── greedy-raxml-dna │ │ ├── partition_finder.cfg │ │ └── test.phy │ ├── greedy-raxml-protein │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── model-greedy-phyml01 │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── model-greedy-phyml02 │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── model-greedy-phyml03 │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── model-greedy-raxml01 │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── model-greedy-raxml02 │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── model-greedy-raxml03 │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ ├── overlap-error │ │ ├── Als_etal_2004.phy │ │ └── partition_finder.cfg │ └── test_christof.py ├── clustering │ ├── DNA_hcluster1 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_hcluster2 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_hcluster3 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_hcluster4 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_hcluster5 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_hcluster6 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_hcluster7 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster1 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster10 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster11 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster12 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster13 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster14 │ │ ├── alignment.phy │ │ ├── cmdline.txt │ │ └── partition_finder.cfg │ ├── DNA_rcluster2 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster3 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster4 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster5 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster6 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster7 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster8 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA_rcluster9 │ │ ├── Caterino_2001.phy │ │ ├── cmdline.txt │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── __init__.py │ ├── prot_hcluster1 │ │ ├── cmdline.txt │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot_hcluster2 │ │ ├── cmdline.txt │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot_hcluster3 │ │ ├── cmdline.txt │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot_rcluster1 │ │ ├── cmdline.txt │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot_rcluster2 │ │ ├── cmdline.txt │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot_rcluster3 │ │ ├── cmdline.txt │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot_rcluster4 │ │ ├── cmdline.txt │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot_rcluster5 │ │ ├── cmdline.txt │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── test_clustering.py │ └── tests.txt ├── full_analysis │ ├── DNA1 │ │ ├── Caterino_2001.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA2 │ │ ├── Caterino_2001.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA3-analysis.zip │ ├── DNA3 │ │ ├── Caterino_2001.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA4 │ │ ├── Caterino_2001.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA5 │ │ ├── Caterino_2001.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA6 │ │ ├── Caterino_2001.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA7 │ │ ├── Caterino_2001.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── DNA8 │ │ ├── Caterino_2001.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── __init__.py │ ├── kmeans1 │ │ ├── alignment.phy │ │ └── partition_finder.cfg │ ├── kmeans_fast │ │ ├── alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot1 │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot2 │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot3 │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot4 │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot5 │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot6 │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot7 │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── prot8 │ │ ├── concat_alignment.phy │ │ ├── partition_finder.cfg │ │ └── results.bin │ ├── rerun01 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun02 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun03 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun04 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun05 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun06 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun07 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun08 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun09 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun10 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun11 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun12 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun13 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun14 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun15 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun20 │ │ ├── Caterino_2001.phy │ │ └── partition_finder.cfg │ ├── rerun21 │ │ ├── Caterino_2001.phy │ │ ├── DNA3-analysis.zip │ │ └── partition_finder.cfg │ ├── test_full.py │ └── tests.txt ├── kmeans │ ├── Grande_2013 │ │ ├── README.yaml │ │ ├── alignment.phy │ │ └── partition_finder.cfg │ ├── __init__.py │ ├── fabrications1 │ │ ├── README.yaml │ │ ├── alignment.phy │ │ └── partition_finder.cfg │ ├── fabrications2 │ │ ├── README.yaml │ │ ├── alignment.phy │ │ └── partition_finder.cfg │ └── test_kmeans.py ├── kmeans_ml_tree │ ├── DNA_entropy │ │ ├── partition_finder.cfg │ │ └── test.phy │ ├── DNA_tiger │ │ ├── partition_finder.cfg │ │ └── test.phy │ ├── __init__.py │ ├── morph_entropy │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── morph_tiger │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ └── test_ml_tree.py ├── misc │ ├── Caterino_2001.phy │ ├── interleave.phy │ ├── raxml_aminoacid.output │ ├── raxml_aminoacid_LG4M+G.output │ └── raxml_nucleotide.output ├── morphology │ ├── __init__.py │ ├── aicctest │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── aictest │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── bictest │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── binASC │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── bin_wrongdata │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── binary │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── incmat │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── modeltest │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── multiASC │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── multistate │ │ ├── partition_finder.cfg │ │ └── single_column.phy │ ├── test_AIC.py │ ├── test_aicc.py │ ├── test_bic.py │ ├── test_incorrectmat.py │ ├── test_mat.py │ ├── test_modelBin.py │ ├── test_modelBinASC.py │ ├── test_modelBinMisSpec.py │ ├── test_modelMulti.py │ ├── test_modelMultiASC.py │ ├── test_modeloutput.py │ ├── test_nsubs.py │ ├── test_wrongmodel.py │ ├── tiger │ │ ├── test_parse_to_rates.py │ │ └── test_rate_calc.py │ └── wrongmodel │ │ ├── partition_finder.cfg │ │ └── single_column.phy ├── nuc_single_site │ ├── partition_finder.cfg │ └── single_site.phy ├── paul │ ├── RAxML_perSiteLLs.testing │ ├── __init__.py │ ├── fabricated │ │ ├── fabricated.phy │ │ └── partition_finder.cfg │ ├── free_rates_4_cat.phy_phyml_lk.txt │ ├── gamma_8_cat.phy_phyml_lk.txt │ └── simulated_TRUE.phy_phyml_lk.txt ├── quick_analysis │ ├── __init__.py │ ├── all │ │ ├── partition_finder.cfg │ │ └── random.phy │ ├── aln_RY │ │ ├── partition_finder.cfg │ │ └── random.phy │ ├── aln_interleaved │ │ ├── partition_finder.cfg │ │ └── random.phy │ ├── greedy │ │ ├── partition_finder.cfg │ │ └── random.phy │ ├── maclinebreaks │ │ ├── partition_finder.cfg │ │ └── random.phy │ ├── test_quick.py │ ├── user │ │ ├── partition_finder.cfg │ │ └── random.phy │ ├── user_tree │ │ ├── partition_finder.cfg │ │ ├── random.phy │ │ └── tree.phy │ └── windowslinebreaks │ │ ├── partition_finder.cfg │ │ └── random.phy ├── test_alignment.py ├── test_options.py ├── test_parser.py ├── test_raxml.py ├── test_submodels.py └── test_subset.py └── timings ├── array_lookups.py └── numpy_vs_set.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/Makefile -------------------------------------------------------------------------------- /PartitionFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/PartitionFinder.py -------------------------------------------------------------------------------- /PartitionFinderMorphology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/PartitionFinderMorphology.py -------------------------------------------------------------------------------- /PartitionFinderProtein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/PartitionFinderProtein.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/README.md -------------------------------------------------------------------------------- /clean_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/clean_tests.sh -------------------------------------------------------------------------------- /docs/Manual_v2.1.x.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/docs/Manual_v2.1.x.docx -------------------------------------------------------------------------------- /docs/Manual_v2.1.x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/docs/Manual_v2.1.x.pdf -------------------------------------------------------------------------------- /docs/PartitionFinder2的一般使用方法(中文版-网页版).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/docs/PartitionFinder2的一般使用方法(中文版-网页版).html -------------------------------------------------------------------------------- /docs/citationsplot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/docs/citationsplot.pdf -------------------------------------------------------------------------------- /docs/citationsplot2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/docs/citationsplot2.pdf -------------------------------------------------------------------------------- /docs/downloadplot.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/docs/downloadplot.r -------------------------------------------------------------------------------- /docs/downloadplot_combined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/docs/downloadplot_combined.pdf -------------------------------------------------------------------------------- /docs/downloadplot_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/docs/downloadplot_v1.pdf -------------------------------------------------------------------------------- /docs/downloadstats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/docs/downloadstats.csv -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/aminoacid/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/examples/aminoacid/partition_finder.cfg -------------------------------------------------------------------------------- /examples/aminoacid/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/examples/aminoacid/test.phy -------------------------------------------------------------------------------- /examples/morphology/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/examples/morphology/partition_finder.cfg -------------------------------------------------------------------------------- /examples/morphology/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/examples/morphology/test.phy -------------------------------------------------------------------------------- /examples/nucleotide/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/examples/nucleotide/partition_finder.cfg -------------------------------------------------------------------------------- /examples/nucleotide/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/examples/nucleotide/test.phy -------------------------------------------------------------------------------- /partfinder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/__init__.py -------------------------------------------------------------------------------- /partfinder/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/algorithm.py -------------------------------------------------------------------------------- /partfinder/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/alignment.py -------------------------------------------------------------------------------- /partfinder/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/analysis.py -------------------------------------------------------------------------------- /partfinder/analysis_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/analysis_method.py -------------------------------------------------------------------------------- /partfinder/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/config.py -------------------------------------------------------------------------------- /partfinder/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/database.py -------------------------------------------------------------------------------- /partfinder/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/dependencies.py -------------------------------------------------------------------------------- /partfinder/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/entropy.py -------------------------------------------------------------------------------- /partfinder/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/kmeans.py -------------------------------------------------------------------------------- /partfinder/logtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/logtools.py -------------------------------------------------------------------------------- /partfinder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/main.py -------------------------------------------------------------------------------- /partfinder/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/model_loader.py -------------------------------------------------------------------------------- /partfinder/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/model_utils.py -------------------------------------------------------------------------------- /partfinder/models.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/models.csv -------------------------------------------------------------------------------- /partfinder/morph_tiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/morph_tiger.py -------------------------------------------------------------------------------- /partfinder/neighbour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/neighbour.py -------------------------------------------------------------------------------- /partfinder/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/parser.py -------------------------------------------------------------------------------- /partfinder/phyml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/phyml.py -------------------------------------------------------------------------------- /partfinder/phyml_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/phyml_models.py -------------------------------------------------------------------------------- /partfinder/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/progress.py -------------------------------------------------------------------------------- /partfinder/raxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/raxml.py -------------------------------------------------------------------------------- /partfinder/raxml_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/raxml_models.py -------------------------------------------------------------------------------- /partfinder/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/reporter.py -------------------------------------------------------------------------------- /partfinder/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/results.py -------------------------------------------------------------------------------- /partfinder/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/scheme.py -------------------------------------------------------------------------------- /partfinder/submodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/submodels.py -------------------------------------------------------------------------------- /partfinder/subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/subset.py -------------------------------------------------------------------------------- /partfinder/subset_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/subset_ops.py -------------------------------------------------------------------------------- /partfinder/threadpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/threadpool.py -------------------------------------------------------------------------------- /partfinder/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/partfinder/util.py -------------------------------------------------------------------------------- /programs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/README.md -------------------------------------------------------------------------------- /programs/phyml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/phyml -------------------------------------------------------------------------------- /programs/phyml.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/phyml.exe -------------------------------------------------------------------------------- /programs/phyml.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/phyml.linux -------------------------------------------------------------------------------- /programs/raxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/raxml -------------------------------------------------------------------------------- /programs/raxml.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/raxml.exe -------------------------------------------------------------------------------- /programs/raxml.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/raxml.linux -------------------------------------------------------------------------------- /programs/raxml_pthreads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/raxml_pthreads -------------------------------------------------------------------------------- /programs/raxml_pthreads.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/raxml_pthreads.exe -------------------------------------------------------------------------------- /programs/raxml_pthreads.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/programs/raxml_pthreads.linux -------------------------------------------------------------------------------- /tests/PF2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/PF2/missing-sites-warning/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/PF2/missing-sites-warning/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/PF2/missing-sites-warning/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/PF2/missing-sites-warning/partition_finder.cfg -------------------------------------------------------------------------------- /tests/PF2/overlapping-blocks/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/PF2/overlapping-blocks/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/PF2/overlapping-blocks/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/PF2/overlapping-blocks/partition_finder.cfg -------------------------------------------------------------------------------- /tests/PF2/test_pf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/PF2/test_pf2.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/all_succeed/1subset/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/all_succeed/1subset/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/all_succeed/1subset/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/all_succeed/1subset/partition_finder.cfg -------------------------------------------------------------------------------- /tests/all_succeed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/all_succeed/test_all_success.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/all_succeed/test_all_success.py -------------------------------------------------------------------------------- /tests/cfg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cfg/test01.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test01.cfg -------------------------------------------------------------------------------- /tests/cfg/test02.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test02.cfg -------------------------------------------------------------------------------- /tests/cfg/test03.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test03.cfg -------------------------------------------------------------------------------- /tests/cfg/test04.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test04.cfg -------------------------------------------------------------------------------- /tests/cfg/test05.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test05.cfg -------------------------------------------------------------------------------- /tests/cfg/test06.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test06.cfg -------------------------------------------------------------------------------- /tests/cfg/test07.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test07.cfg -------------------------------------------------------------------------------- /tests/cfg/test08.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test08.cfg -------------------------------------------------------------------------------- /tests/cfg/test09.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test09.cfg -------------------------------------------------------------------------------- /tests/cfg/test10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test10.cfg -------------------------------------------------------------------------------- /tests/cfg/test11.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test11.cfg -------------------------------------------------------------------------------- /tests/cfg/test12.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test12.cfg -------------------------------------------------------------------------------- /tests/cfg/test13.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test13.cfg -------------------------------------------------------------------------------- /tests/cfg/test14.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test14.cfg -------------------------------------------------------------------------------- /tests/cfg/test15.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test15.cfg -------------------------------------------------------------------------------- /tests/cfg/test16.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test16.cfg -------------------------------------------------------------------------------- /tests/cfg/test_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/cfg/test_configs.py -------------------------------------------------------------------------------- /tests/christof/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/christof/alignment-error/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/alignment-error/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/alignment-error/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/alignment-error/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/clustering-phyml-dna/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/clustering-phyml-dna/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/clustering-phyml-dna/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/clustering-phyml-dna/test.phy -------------------------------------------------------------------------------- /tests/christof/clustering-raxml-dna/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/clustering-raxml-dna/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/clustering-raxml-dna/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/clustering-raxml-dna/test.phy -------------------------------------------------------------------------------- /tests/christof/greedy-phyml-dna/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/greedy-phyml-dna/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/greedy-phyml-dna/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/greedy-phyml-dna/test.phy -------------------------------------------------------------------------------- /tests/christof/greedy-phyml-protein/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/greedy-phyml-protein/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/greedy-phyml-protein/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/greedy-phyml-protein/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/greedy-raxml-dna/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/greedy-raxml-dna/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/greedy-raxml-dna/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/greedy-raxml-dna/test.phy -------------------------------------------------------------------------------- /tests/christof/greedy-raxml-protein/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/greedy-raxml-protein/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/greedy-raxml-protein/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/greedy-raxml-protein/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/model-greedy-phyml01/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-phyml01/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/model-greedy-phyml01/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-phyml01/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/model-greedy-phyml02/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-phyml02/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/model-greedy-phyml02/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-phyml02/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/model-greedy-phyml03/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-phyml03/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/model-greedy-phyml03/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-phyml03/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/model-greedy-raxml01/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-raxml01/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/model-greedy-raxml01/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-raxml01/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/model-greedy-raxml02/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-raxml02/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/model-greedy-raxml02/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-raxml02/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/model-greedy-raxml03/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-raxml03/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/model-greedy-raxml03/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/model-greedy-raxml03/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/overlap-error/Als_etal_2004.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/overlap-error/Als_etal_2004.phy -------------------------------------------------------------------------------- /tests/christof/overlap-error/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/overlap-error/partition_finder.cfg -------------------------------------------------------------------------------- /tests/christof/test_christof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/christof/test_christof.py -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster1/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster1/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster1/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster1/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster1/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster1/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster1/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster2/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster2/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster2/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster2/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster2/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster2/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster2/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster3/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster3/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster3/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster3/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster3/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster3/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster3/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster4/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster4/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster4/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster4/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster4/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster4/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster4/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster4/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster5/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster5/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster5/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster5/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster5/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster5/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster5/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster5/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster6/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster6/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster6/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster6/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster6/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster6/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster6/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster6/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster7/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster7/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster7/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster7/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster7/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster7/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_hcluster7/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_hcluster7/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster1/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster1/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster1/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster1/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster1/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster1/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster1/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster10/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster10/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster10/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster10/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster10/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster10/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster10/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster10/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster11/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster11/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster11/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml --rcluster-percent "100.00" -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster11/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster11/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster11/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster11/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster12/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster12/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster12/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml --rcluster-percent "100.001" -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster12/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster12/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster12/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster12/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster13/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster13/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster13/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml --rcluster-percent "-0.001" -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster13/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster13/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster13/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster13/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster14/alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster14/alignment.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster14/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster14/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster14/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster14/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster2/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster2/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster2/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster2/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster2/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster2/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster2/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster3/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster3/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster3/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster3/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster3/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster3/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster3/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster4/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster4/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster4/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster4/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster4/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster4/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster4/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster4/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster5/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster5/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster5/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster5/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster5/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster5/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster5/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster5/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster6/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster6/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster6/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster6/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster6/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster6/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster6/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster6/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster7/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster7/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster7/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster7/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster7/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster7/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster7/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster7/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster8/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster8/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster8/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml --rcluster-percent = "0" -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster8/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster8/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster8/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster8/results.bin -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster9/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster9/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster9/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster9/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster9/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster9/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/DNA_rcluster9/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/DNA_rcluster9/results.bin -------------------------------------------------------------------------------- /tests/clustering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster1/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster1/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_hcluster1/concat_alignment.phy -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster1/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_hcluster1/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster1/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_hcluster1/results.bin -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster2/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster2/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_hcluster2/concat_alignment.phy -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster2/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_hcluster2/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster2/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_hcluster2/results.bin -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster3/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster3/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_hcluster3/concat_alignment.phy -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster3/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_hcluster3/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/prot_hcluster3/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_hcluster3/results.bin -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster1/cmdline.txt: -------------------------------------------------------------------------------- 1 | --raxml --weights "1, 0, 100, egg" -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster1/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster1/concat_alignment.phy -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster1/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster1/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster1/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster1/results.bin -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster2/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster2/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster2/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster2/concat_alignment.phy -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster2/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster2/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster2/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster2/results.bin -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster3/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster3/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster3/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster3/concat_alignment.phy -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster3/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster3/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster3/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster3/results.bin -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster4/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster4/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster4/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster4/concat_alignment.phy -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster4/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster4/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster4/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster4/results.bin -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster5/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster5/cmdline.txt -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster5/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster5/concat_alignment.phy -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster5/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster5/partition_finder.cfg -------------------------------------------------------------------------------- /tests/clustering/prot_rcluster5/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/prot_rcluster5/results.bin -------------------------------------------------------------------------------- /tests/clustering/test_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/test_clustering.py -------------------------------------------------------------------------------- /tests/clustering/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/clustering/tests.txt -------------------------------------------------------------------------------- /tests/full_analysis/DNA1/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA1/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/DNA1/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA1/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/DNA1/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA1/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/DNA2/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA2/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/DNA2/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA2/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/DNA2/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA2/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/DNA3-analysis.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA3-analysis.zip -------------------------------------------------------------------------------- /tests/full_analysis/DNA3/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA3/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/DNA3/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA3/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/DNA3/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA3/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/DNA4/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA4/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/DNA4/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA4/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/DNA4/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA4/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/DNA5/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA5/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/DNA5/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA5/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/DNA5/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA5/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/DNA6/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA6/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/DNA6/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA6/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/DNA6/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA6/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/DNA7/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA7/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/DNA7/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA7/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/DNA7/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA7/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/DNA8/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA8/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/DNA8/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA8/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/DNA8/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/DNA8/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/full_analysis/kmeans1/alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/kmeans1/alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/kmeans1/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/kmeans1/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/kmeans_fast/alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/kmeans_fast/alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/kmeans_fast/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/kmeans_fast/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/kmeans_fast/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/kmeans_fast/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/prot1/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot1/concat_alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/prot1/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot1/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/prot1/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot1/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/prot2/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot2/concat_alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/prot2/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot2/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/prot2/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot2/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/prot3/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot3/concat_alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/prot3/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot3/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/prot3/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot3/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/prot4/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot4/concat_alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/prot4/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot4/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/prot4/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot4/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/prot5/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot5/concat_alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/prot5/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot5/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/prot5/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot5/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/prot6/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot6/concat_alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/prot6/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot6/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/prot6/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot6/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/prot7/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot7/concat_alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/prot7/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot7/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/prot7/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot7/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/prot8/concat_alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot8/concat_alignment.phy -------------------------------------------------------------------------------- /tests/full_analysis/prot8/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot8/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/prot8/results.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/prot8/results.bin -------------------------------------------------------------------------------- /tests/full_analysis/rerun01/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun01/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun01/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun01/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun02/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun02/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun02/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun02/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun03/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun03/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun03/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun03/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun04/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun04/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun04/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun04/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun05/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun05/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun05/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun05/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun06/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun06/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun06/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun06/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun07/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun07/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun07/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun07/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun08/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun08/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun08/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun08/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun09/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun09/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun09/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun09/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun10/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun10/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun10/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun10/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun11/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun11/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun11/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun11/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun12/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun12/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun12/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun12/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun13/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun13/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun13/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun13/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun14/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun14/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun14/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun14/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun15/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun15/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun15/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun15/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun20/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun20/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun20/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun20/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/rerun21/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun21/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/full_analysis/rerun21/DNA3-analysis.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun21/DNA3-analysis.zip -------------------------------------------------------------------------------- /tests/full_analysis/rerun21/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/rerun21/partition_finder.cfg -------------------------------------------------------------------------------- /tests/full_analysis/test_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/test_full.py -------------------------------------------------------------------------------- /tests/full_analysis/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/full_analysis/tests.txt -------------------------------------------------------------------------------- /tests/kmeans/Grande_2013/README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/Grande_2013/README.yaml -------------------------------------------------------------------------------- /tests/kmeans/Grande_2013/alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/Grande_2013/alignment.phy -------------------------------------------------------------------------------- /tests/kmeans/Grande_2013/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/Grande_2013/partition_finder.cfg -------------------------------------------------------------------------------- /tests/kmeans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/kmeans/fabrications1/README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/fabrications1/README.yaml -------------------------------------------------------------------------------- /tests/kmeans/fabrications1/alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/fabrications1/alignment.phy -------------------------------------------------------------------------------- /tests/kmeans/fabrications1/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/fabrications1/partition_finder.cfg -------------------------------------------------------------------------------- /tests/kmeans/fabrications2/README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/fabrications2/README.yaml -------------------------------------------------------------------------------- /tests/kmeans/fabrications2/alignment.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/fabrications2/alignment.phy -------------------------------------------------------------------------------- /tests/kmeans/fabrications2/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/fabrications2/partition_finder.cfg -------------------------------------------------------------------------------- /tests/kmeans/test_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans/test_kmeans.py -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/DNA_entropy/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans_ml_tree/DNA_entropy/partition_finder.cfg -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/DNA_entropy/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans_ml_tree/DNA_entropy/test.phy -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/DNA_tiger/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans_ml_tree/DNA_tiger/partition_finder.cfg -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/DNA_tiger/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans_ml_tree/DNA_tiger/test.phy -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/morph_entropy/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans_ml_tree/morph_entropy/partition_finder.cfg -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/morph_entropy/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans_ml_tree/morph_entropy/single_column.phy -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/morph_tiger/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans_ml_tree/morph_tiger/partition_finder.cfg -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/morph_tiger/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans_ml_tree/morph_tiger/single_column.phy -------------------------------------------------------------------------------- /tests/kmeans_ml_tree/test_ml_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/kmeans_ml_tree/test_ml_tree.py -------------------------------------------------------------------------------- /tests/misc/Caterino_2001.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/misc/Caterino_2001.phy -------------------------------------------------------------------------------- /tests/misc/interleave.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/misc/interleave.phy -------------------------------------------------------------------------------- /tests/misc/raxml_aminoacid.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/misc/raxml_aminoacid.output -------------------------------------------------------------------------------- /tests/misc/raxml_aminoacid_LG4M+G.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/misc/raxml_aminoacid_LG4M+G.output -------------------------------------------------------------------------------- /tests/misc/raxml_nucleotide.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/misc/raxml_nucleotide.output -------------------------------------------------------------------------------- /tests/morphology/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/morphology/aicctest/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/aicctest/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/aicctest/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/aicctest/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/aictest/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/aictest/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/aictest/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/aictest/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/bictest/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/bictest/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/bictest/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/bictest/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/binASC/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/binASC/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/binASC/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/binASC/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/bin_wrongdata/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/bin_wrongdata/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/bin_wrongdata/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/bin_wrongdata/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/binary/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/binary/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/binary/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/binary/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/incmat/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/incmat/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/incmat/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/incmat/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/modeltest/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/modeltest/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/modeltest/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/modeltest/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/multiASC/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/multiASC/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/multiASC/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/multiASC/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/multistate/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/multistate/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/multistate/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/multistate/single_column.phy -------------------------------------------------------------------------------- /tests/morphology/test_AIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_AIC.py -------------------------------------------------------------------------------- /tests/morphology/test_aicc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_aicc.py -------------------------------------------------------------------------------- /tests/morphology/test_bic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_bic.py -------------------------------------------------------------------------------- /tests/morphology/test_incorrectmat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_incorrectmat.py -------------------------------------------------------------------------------- /tests/morphology/test_mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_mat.py -------------------------------------------------------------------------------- /tests/morphology/test_modelBin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_modelBin.py -------------------------------------------------------------------------------- /tests/morphology/test_modelBinASC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_modelBinASC.py -------------------------------------------------------------------------------- /tests/morphology/test_modelBinMisSpec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_modelBinMisSpec.py -------------------------------------------------------------------------------- /tests/morphology/test_modelMulti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_modelMulti.py -------------------------------------------------------------------------------- /tests/morphology/test_modelMultiASC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_modelMultiASC.py -------------------------------------------------------------------------------- /tests/morphology/test_modeloutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_modeloutput.py -------------------------------------------------------------------------------- /tests/morphology/test_nsubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_nsubs.py -------------------------------------------------------------------------------- /tests/morphology/test_wrongmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/test_wrongmodel.py -------------------------------------------------------------------------------- /tests/morphology/tiger/test_parse_to_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/tiger/test_parse_to_rates.py -------------------------------------------------------------------------------- /tests/morphology/tiger/test_rate_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/tiger/test_rate_calc.py -------------------------------------------------------------------------------- /tests/morphology/wrongmodel/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/wrongmodel/partition_finder.cfg -------------------------------------------------------------------------------- /tests/morphology/wrongmodel/single_column.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/morphology/wrongmodel/single_column.phy -------------------------------------------------------------------------------- /tests/nuc_single_site/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/nuc_single_site/partition_finder.cfg -------------------------------------------------------------------------------- /tests/nuc_single_site/single_site.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/nuc_single_site/single_site.phy -------------------------------------------------------------------------------- /tests/paul/RAxML_perSiteLLs.testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/paul/RAxML_perSiteLLs.testing -------------------------------------------------------------------------------- /tests/paul/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/paul/fabricated/fabricated.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/paul/fabricated/fabricated.phy -------------------------------------------------------------------------------- /tests/paul/fabricated/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/paul/fabricated/partition_finder.cfg -------------------------------------------------------------------------------- /tests/paul/free_rates_4_cat.phy_phyml_lk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/paul/free_rates_4_cat.phy_phyml_lk.txt -------------------------------------------------------------------------------- /tests/paul/gamma_8_cat.phy_phyml_lk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/paul/gamma_8_cat.phy_phyml_lk.txt -------------------------------------------------------------------------------- /tests/paul/simulated_TRUE.phy_phyml_lk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/paul/simulated_TRUE.phy_phyml_lk.txt -------------------------------------------------------------------------------- /tests/quick_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/quick_analysis/all/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/all/partition_finder.cfg -------------------------------------------------------------------------------- /tests/quick_analysis/all/random.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/all/random.phy -------------------------------------------------------------------------------- /tests/quick_analysis/aln_RY/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/aln_RY/partition_finder.cfg -------------------------------------------------------------------------------- /tests/quick_analysis/aln_RY/random.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/aln_RY/random.phy -------------------------------------------------------------------------------- /tests/quick_analysis/aln_interleaved/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/aln_interleaved/partition_finder.cfg -------------------------------------------------------------------------------- /tests/quick_analysis/aln_interleaved/random.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/aln_interleaved/random.phy -------------------------------------------------------------------------------- /tests/quick_analysis/greedy/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/greedy/partition_finder.cfg -------------------------------------------------------------------------------- /tests/quick_analysis/greedy/random.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/greedy/random.phy -------------------------------------------------------------------------------- /tests/quick_analysis/maclinebreaks/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/maclinebreaks/partition_finder.cfg -------------------------------------------------------------------------------- /tests/quick_analysis/maclinebreaks/random.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/maclinebreaks/random.phy -------------------------------------------------------------------------------- /tests/quick_analysis/test_quick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/test_quick.py -------------------------------------------------------------------------------- /tests/quick_analysis/user/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/user/partition_finder.cfg -------------------------------------------------------------------------------- /tests/quick_analysis/user/random.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/user/random.phy -------------------------------------------------------------------------------- /tests/quick_analysis/user_tree/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/user_tree/partition_finder.cfg -------------------------------------------------------------------------------- /tests/quick_analysis/user_tree/random.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/user_tree/random.phy -------------------------------------------------------------------------------- /tests/quick_analysis/user_tree/tree.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/user_tree/tree.phy -------------------------------------------------------------------------------- /tests/quick_analysis/windowslinebreaks/partition_finder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/windowslinebreaks/partition_finder.cfg -------------------------------------------------------------------------------- /tests/quick_analysis/windowslinebreaks/random.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/quick_analysis/windowslinebreaks/random.phy -------------------------------------------------------------------------------- /tests/test_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/test_alignment.py -------------------------------------------------------------------------------- /tests/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/test_options.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/test_raxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/test_raxml.py -------------------------------------------------------------------------------- /tests/test_submodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/test_submodels.py -------------------------------------------------------------------------------- /tests/test_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/tests/test_subset.py -------------------------------------------------------------------------------- /timings/array_lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/timings/array_lookups.py -------------------------------------------------------------------------------- /timings/numpy_vs_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettc/partitionfinder/HEAD/timings/numpy_vs_set.py --------------------------------------------------------------------------------