├── .flake8 ├── .gitignore ├── .pylintrc ├── LICENSE ├── MANIFEST.in ├── README.md ├── ReleaseNotes_3.0.0.txt ├── ReleaseNotes_3.1.0.txt ├── ReleaseNotes_4.0.0.txt ├── ReleaseNotes_4.1.0.txt ├── ReleaseNotes_4.2.0.txt ├── ReleaseNotes_5.0.0.txt ├── best_output.csv ├── docs ├── index.html ├── musicdiff.html ├── musicdiff │ ├── annotation.html │ ├── comparison.html │ ├── detaillevel.html │ └── visualization.html └── search.js ├── examples └── musicdiff_demo.ipynb ├── generateDocs.commands ├── musicdiff ├── __init__.py ├── __main__.py ├── annotation.py ├── comparison.py ├── detaillevel.py ├── m21utils.py ├── py.typed └── visualization.py ├── py.typed ├── pypi_README.md ├── setup.py ├── symbols.txt └── tests ├── expected_cmd_line_output.txt ├── generate_cmd_line_test_results ├── test_cmd_line ├── test_ml_training_evaluation.sh ├── test_nl.py ├── test_results ├── cmd_line_results_allobjects.txt ├── cmd_line_results_allobjects_no_lyrics.txt ├── cmd_line_results_allobjects_no_lyrics_barlines.txt ├── cmd_line_results_allobjects_style.txt ├── cmd_line_results_allobjects_style_metadata.txt ├── cmd_line_results_allobjects_style_metadata_omrned.txt ├── cmd_line_results_allobjects_style_no_lyrics.txt ├── cmd_line_results_decoratednotesandrests.txt ├── cmd_line_results_decoratednotesandrests_no_ties.txt ├── cmd_line_results_decoratednotesandrests_no_ties_beams.txt ├── cmd_line_results_decoratednotesandrests_no_ties_beams_slurs.txt ├── cmd_line_results_decoratednotesandrests_voicing.txt ├── cmd_line_results_lyrics.txt ├── cmd_line_results_metadata.txt ├── cmd_line_results_notesandrests.txt ├── cmd_line_results_notesandrests_articulations.txt ├── cmd_line_results_notesandrests_articulations_ornaments.txt ├── cmd_line_results_notesandrests_barlines.txt ├── cmd_line_results_notesandrests_barlines_directions.txt ├── cmd_line_results_notesandrests_directions.txt ├── cmd_line_results_notesandrests_omrned.txt ├── cmd_line_results_otherobjects.txt └── cmd_line_results_otherobjects_style.txt ├── test_scl.py ├── test_score_visualization.py ├── test_scores ├── chord_score_1a.mei ├── chord_score_1b.mei ├── chord_score_2a.mei ├── chord_score_2b.mei ├── chord_score_3a.mei ├── chord_score_3b.mei ├── humdrum │ ├── Haydn_-_Symphony_No._44_in_E_minor.krn │ └── Nimrod_for_string_quartet.krn ├── monophonic_score_1a.mei ├── monophonic_score_1b.mei ├── multivoice_score_1a.mei ├── multivoice_score_1b.mei ├── musicxml │ ├── Haydn_-_Symphony_No._44_in_E_minor.musicxml │ ├── Nimrod_for_string_quartet.musicxml │ ├── articulation_score_1a.xml │ ├── articulation_score_1b.xml │ ├── chord_score_1a.xml │ ├── chord_score_1b.xml │ ├── chord_score_2a.xml │ ├── chord_score_2b.xml │ ├── chord_score_3a.xml │ ├── chord_score_3b.xml │ ├── longHaydn_a.musicxml │ ├── longHaydn_b.musicxml │ ├── monophonic_score_1a.xml │ ├── monophonic_score_1b.xml │ ├── multivoice_score_1a.xml │ ├── multivoice_score_1b.xml │ ├── polyphonic_score_2a.xml │ ├── polyphonic_score_2b.xml │ ├── tie_score_1a.xml │ ├── tie_score_1b.xml │ ├── tie_score_2a.xml │ ├── tie_score_2b.xml │ ├── tuplet_score_1a.xml │ └── tuplet_score_1b.xml ├── polyphonic_score_1a.mei ├── polyphonic_score_1b.mei ├── polyphonic_score_2a.mei ├── polyphonic_score_2b.mei ├── test_all_details_1a.mei ├── test_all_details_1b.mei ├── tie_score_1a.mei ├── tie_score_1b.mei ├── tie_score_2a.mei ├── tie_score_2b.mei ├── tuplet_score_1a.mei ├── tuplet_score_1b.mei └── xml2.xml └── test_utils.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .coverage 2 | .idea 3 | htmlcov 4 | __pycache__ 5 | musicdiff.egg-info 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pypi_README.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes_3.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/ReleaseNotes_3.0.0.txt -------------------------------------------------------------------------------- /ReleaseNotes_3.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/ReleaseNotes_3.1.0.txt -------------------------------------------------------------------------------- /ReleaseNotes_4.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/ReleaseNotes_4.0.0.txt -------------------------------------------------------------------------------- /ReleaseNotes_4.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/ReleaseNotes_4.1.0.txt -------------------------------------------------------------------------------- /ReleaseNotes_4.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/ReleaseNotes_4.2.0.txt -------------------------------------------------------------------------------- /ReleaseNotes_5.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/ReleaseNotes_5.0.0.txt -------------------------------------------------------------------------------- /best_output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/best_output.csv -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/musicdiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/docs/musicdiff.html -------------------------------------------------------------------------------- /docs/musicdiff/annotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/docs/musicdiff/annotation.html -------------------------------------------------------------------------------- /docs/musicdiff/comparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/docs/musicdiff/comparison.html -------------------------------------------------------------------------------- /docs/musicdiff/detaillevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/docs/musicdiff/detaillevel.html -------------------------------------------------------------------------------- /docs/musicdiff/visualization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/docs/musicdiff/visualization.html -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/docs/search.js -------------------------------------------------------------------------------- /examples/musicdiff_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/examples/musicdiff_demo.ipynb -------------------------------------------------------------------------------- /generateDocs.commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/generateDocs.commands -------------------------------------------------------------------------------- /musicdiff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/musicdiff/__init__.py -------------------------------------------------------------------------------- /musicdiff/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/musicdiff/__main__.py -------------------------------------------------------------------------------- /musicdiff/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/musicdiff/annotation.py -------------------------------------------------------------------------------- /musicdiff/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/musicdiff/comparison.py -------------------------------------------------------------------------------- /musicdiff/detaillevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/musicdiff/detaillevel.py -------------------------------------------------------------------------------- /musicdiff/m21utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/musicdiff/m21utils.py -------------------------------------------------------------------------------- /musicdiff/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musicdiff/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/musicdiff/visualization.py -------------------------------------------------------------------------------- /py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypi_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/pypi_README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/setup.py -------------------------------------------------------------------------------- /symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/symbols.txt -------------------------------------------------------------------------------- /tests/expected_cmd_line_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/expected_cmd_line_output.txt -------------------------------------------------------------------------------- /tests/generate_cmd_line_test_results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/generate_cmd_line_test_results -------------------------------------------------------------------------------- /tests/test_cmd_line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_cmd_line -------------------------------------------------------------------------------- /tests/test_ml_training_evaluation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_ml_training_evaluation.sh -------------------------------------------------------------------------------- /tests/test_nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_nl.py -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_allobjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_allobjects.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_allobjects_no_lyrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_allobjects_no_lyrics.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_allobjects_no_lyrics_barlines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_allobjects_no_lyrics_barlines.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_allobjects_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_allobjects_style.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_allobjects_style_metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_allobjects_style_metadata.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_allobjects_style_metadata_omrned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_allobjects_style_metadata_omrned.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_allobjects_style_no_lyrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_allobjects_style_no_lyrics.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_decoratednotesandrests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_decoratednotesandrests.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_decoratednotesandrests_no_ties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_decoratednotesandrests_no_ties.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_decoratednotesandrests_no_ties_beams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_decoratednotesandrests_no_ties_beams.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_decoratednotesandrests_no_ties_beams_slurs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_decoratednotesandrests_voicing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_decoratednotesandrests_voicing.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_lyrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_lyrics.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_metadata.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_notesandrests.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_notesandrests_articulations.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_notesandrests_articulations_ornaments.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_notesandrests_barlines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_notesandrests_barlines.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_notesandrests_barlines_directions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_notesandrests_barlines_directions.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_notesandrests_directions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_notesandrests_directions.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_notesandrests_omrned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_notesandrests_omrned.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_otherobjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_otherobjects.txt -------------------------------------------------------------------------------- /tests/test_results/cmd_line_results_otherobjects_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_results/cmd_line_results_otherobjects_style.txt -------------------------------------------------------------------------------- /tests/test_scl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scl.py -------------------------------------------------------------------------------- /tests/test_score_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_score_visualization.py -------------------------------------------------------------------------------- /tests/test_scores/chord_score_1a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/chord_score_1a.mei -------------------------------------------------------------------------------- /tests/test_scores/chord_score_1b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/chord_score_1b.mei -------------------------------------------------------------------------------- /tests/test_scores/chord_score_2a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/chord_score_2a.mei -------------------------------------------------------------------------------- /tests/test_scores/chord_score_2b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/chord_score_2b.mei -------------------------------------------------------------------------------- /tests/test_scores/chord_score_3a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/chord_score_3a.mei -------------------------------------------------------------------------------- /tests/test_scores/chord_score_3b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/chord_score_3b.mei -------------------------------------------------------------------------------- /tests/test_scores/humdrum/Haydn_-_Symphony_No._44_in_E_minor.krn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/humdrum/Haydn_-_Symphony_No._44_in_E_minor.krn -------------------------------------------------------------------------------- /tests/test_scores/humdrum/Nimrod_for_string_quartet.krn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/humdrum/Nimrod_for_string_quartet.krn -------------------------------------------------------------------------------- /tests/test_scores/monophonic_score_1a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/monophonic_score_1a.mei -------------------------------------------------------------------------------- /tests/test_scores/monophonic_score_1b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/monophonic_score_1b.mei -------------------------------------------------------------------------------- /tests/test_scores/multivoice_score_1a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/multivoice_score_1a.mei -------------------------------------------------------------------------------- /tests/test_scores/multivoice_score_1b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/multivoice_score_1b.mei -------------------------------------------------------------------------------- /tests/test_scores/musicxml/Haydn_-_Symphony_No._44_in_E_minor.musicxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/Haydn_-_Symphony_No._44_in_E_minor.musicxml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/Nimrod_for_string_quartet.musicxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/Nimrod_for_string_quartet.musicxml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/articulation_score_1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/articulation_score_1a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/articulation_score_1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/articulation_score_1b.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/chord_score_1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/chord_score_1a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/chord_score_1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/chord_score_1b.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/chord_score_2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/chord_score_2a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/chord_score_2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/chord_score_2b.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/chord_score_3a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/chord_score_3a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/chord_score_3b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/chord_score_3b.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/longHaydn_a.musicxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/longHaydn_a.musicxml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/longHaydn_b.musicxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/longHaydn_b.musicxml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/monophonic_score_1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/monophonic_score_1a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/monophonic_score_1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/monophonic_score_1b.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/multivoice_score_1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/multivoice_score_1a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/multivoice_score_1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/multivoice_score_1b.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/polyphonic_score_2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/polyphonic_score_2a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/polyphonic_score_2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/polyphonic_score_2b.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/tie_score_1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/tie_score_1a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/tie_score_1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/tie_score_1b.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/tie_score_2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/tie_score_2a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/tie_score_2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/tie_score_2b.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/tuplet_score_1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/tuplet_score_1a.xml -------------------------------------------------------------------------------- /tests/test_scores/musicxml/tuplet_score_1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/musicxml/tuplet_score_1b.xml -------------------------------------------------------------------------------- /tests/test_scores/polyphonic_score_1a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/polyphonic_score_1a.mei -------------------------------------------------------------------------------- /tests/test_scores/polyphonic_score_1b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/polyphonic_score_1b.mei -------------------------------------------------------------------------------- /tests/test_scores/polyphonic_score_2a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/polyphonic_score_2a.mei -------------------------------------------------------------------------------- /tests/test_scores/polyphonic_score_2b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/polyphonic_score_2b.mei -------------------------------------------------------------------------------- /tests/test_scores/test_all_details_1a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/test_all_details_1a.mei -------------------------------------------------------------------------------- /tests/test_scores/test_all_details_1b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/test_all_details_1b.mei -------------------------------------------------------------------------------- /tests/test_scores/tie_score_1a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/tie_score_1a.mei -------------------------------------------------------------------------------- /tests/test_scores/tie_score_1b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/tie_score_1b.mei -------------------------------------------------------------------------------- /tests/test_scores/tie_score_2a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/tie_score_2a.mei -------------------------------------------------------------------------------- /tests/test_scores/tie_score_2b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/tie_score_2b.mei -------------------------------------------------------------------------------- /tests/test_scores/tuplet_score_1a.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/tuplet_score_1a.mei -------------------------------------------------------------------------------- /tests/test_scores/tuplet_score_1b.mei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/tuplet_score_1b.mei -------------------------------------------------------------------------------- /tests/test_scores/xml2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_scores/xml2.xml -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchapman-dev/musicdiff/HEAD/tests/test_utils.py --------------------------------------------------------------------------------