private File _path_to_local_mafft = null;
private File _path_to_local_fastme = null;
private File _path_to_local_raxml = null;
- private File _path_to_local_clustalo = null;
final static int display_as_phylogram = 0;
final static int show_node_names = 1;
final static int show_tax_code = 2;
return _label_for_get_ext_descendents_data;
}
- public File getPathToLocalClustalOmega() {
- return _path_to_local_clustalo;
- }
-
public File getPathToLocalFastme() {
return _path_to_local_fastme;
}
_number_of_digits_after_comma_for_confidence_values = number_of_digits_after_comma_for_confidence_values;
}
- public void setPathToLocalClustalOmega( final File path_to_local_clustalo ) {
- _path_to_local_clustalo = path_to_local_clustalo;
- }
-
public void setPhylogenyGraphicsType( final PHYLOGENY_GRAPHICS_TYPE phylogeny_graphics_type ) {
_phylogeny_graphics_type = phylogeny_graphics_type;
}
"value for [default_number_of_bootstrap_resamples] cannot be negative" );
}
}
- else if ( key.equals( "clustalo_local" ) ) {
- final String str = ( ( String ) st.nextElement() ).trim();
- if ( !ForesterUtil.isEmpty( str ) ) {
- setPathToLocalClustalOmega( new File( str ) );
- }
- }
else if ( key.equals( "mafft_local" ) ) {
final String str = ( ( String ) st.nextElement() ).trim();
if ( !ForesterUtil.isEmpty( str ) ) {
private final File _path_to_local_raxml;
public static InferenceManager createInstance( final Configuration c ) {
- return new InferenceManager( c.getpathToLocalMafft(),
- c.getPathToLocalFastme(),
- c.getPathToLocalRaxml(),
- c.getPathToLocalClustalOmega() );
+ return new InferenceManager( c.getpathToLocalMafft(), c.getPathToLocalFastme(), c.getPathToLocalRaxml() );
}
public boolean canDoMsa() {
private InferenceManager( final File path_to_local_mafft,
final File path_to_local_fastme,
- final File path_to_local_raxml,
- final File path_to_local_clustalo ) {
+ final File path_to_local_raxml ) {
_path_to_local_mafft = createLocalPath( path_to_local_mafft, "mafft" );
_path_to_local_fastme = createLocalPath( path_to_local_fastme, "fastme" );
_path_to_local_raxml = createLocalPath( path_to_local_raxml, "raxml" );