Skip to content
Snippets Groups Projects
Select Git revision
  • f3510ac020e3120312031472c255bdd515558e2e
  • master default protected
2 results

Alignment.java

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Alignment.java 960 B
    /** This file is part of TreeCmp, a tool for comparing phylogenetic trees
        using the Matching Split distance and other metrics.
        Copyright (C) 2011,  Damian Bogdanowicz
    
        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU General Public License as published by
        the Free Software Foundation, either version 3 of the License, or
        (at your option) any later version.
    
        This program is distributed in the hope that it will be useful,
        but WITHOUT ANY WARRANTY; without even the implied warranty of
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        GNU General Public License for more details.
    
        You should have received a copy of the GNU General Public License
        along with this program.  If not, see <http://www.gnu.org/licenses/>. */
    
    package treecmp.metric;
    
    import treecmp.common.AlignInfo;
    
    public interface Alignment {
    
        public AlignInfo getAlignment();
    }