https://github.com/sanger-pathogens/gubbins
Raw File
Tip revision: afc51e6c7b0dcdb43842b4db5aaf6f799f5f7c3c authored by Christoph PĆ¼the on 20 January 2020, 10:25:33 UTC
Merge pull request #271 from sanger-pathogens/gdb
Tip revision: afc51e6
tree_scaling.h
/*
 *  Wellcome Trust Sanger Institute
 *  Copyright (C) 2011  Wellcome Trust Sanger Institute
 *  
 *  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 2
 *  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, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef _TREE_SCALING_H_
#define _TREE_SCALING_H_
void scale_branch_distances(newick_node * root_node, int number_of_filtered_snps);
void cleanup_node_memory(newick_node * root_node);

#endif




back to top