-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5b4d44
commit 96cfc68
Showing
3 changed files
with
87 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// Display a reconciled tree form recPhyloXML format | ||
|
||
use light_phylogeny::{ArenaTree,Options,Config,read_recphyloxml_multi,recphyloxml_processing,phyloxml_processing}; | ||
// use std::env; | ||
|
||
fn main() { | ||
|
||
|
||
// ============================================================================================ | ||
let transfers = vec![]; | ||
let mut options: Options = Options::new(); | ||
let config: Config = Config::new(); | ||
let mut sp_tree: ArenaTree<String> = ArenaTree::default(); | ||
let mut gene_trees:std::vec::Vec<ArenaTree<String>> = Vec::new(); | ||
let mut global_roots: std::vec::Vec<usize> = Vec::new(); | ||
|
||
|
||
options.node_colors.push("03_duplication".to_string()); | ||
options.node_colors.push("b4_duplication".to_string()); | ||
|
||
read_recphyloxml_multi("examples/example_dupli.recphylo".to_string(), | ||
&mut sp_tree, &mut gene_trees, &mut global_roots); | ||
recphyloxml_processing(&mut sp_tree, &mut gene_trees, &mut options, &config, true, | ||
&transfers, "test_bckg_default.svg".to_string()); | ||
println!("Please open output file 'test_bckg_1.svg' with your browser"); | ||
|
||
// ============================================================================================ | ||
let transfers = vec![]; | ||
let mut options: Options = Options::new(); | ||
let config: Config = Config::new(); | ||
let mut sp_tree: ArenaTree<String> = ArenaTree::default(); | ||
let mut gene_trees:std::vec::Vec<ArenaTree<String>> = Vec::new(); | ||
let mut global_roots: std::vec::Vec<usize> = Vec::new(); | ||
|
||
|
||
options.node_colors.push("03_duplication".to_string()); | ||
options.node_colors.push("b4_duplication".to_string()); | ||
|
||
options.bckg_color = "Black".to_string(); | ||
|
||
|
||
read_recphyloxml_multi("examples/example_dupli.recphylo".to_string(), | ||
&mut sp_tree, &mut gene_trees, &mut global_roots); | ||
recphyloxml_processing(&mut sp_tree, &mut gene_trees, &mut options, &config, true, | ||
&transfers, "test_bckg_black.svg".to_string()); | ||
println!("Please open output file 'test_bckg_black.svg' with your browser"); | ||
|
||
|
||
// ============================================================================================ | ||
let transfers = vec![]; | ||
let mut options: Options = Options::new(); | ||
let config: Config = Config::new(); | ||
let mut sp_tree: ArenaTree<String> = ArenaTree::default(); | ||
let mut gene_trees:std::vec::Vec<ArenaTree<String>> = Vec::new(); | ||
let mut global_roots: std::vec::Vec<usize> = Vec::new(); | ||
|
||
|
||
options.node_colors.push("03_duplication".to_string()); | ||
options.node_colors.push("b4_duplication".to_string()); | ||
|
||
options.bckg_color = "#E9C78C".to_string(); | ||
|
||
|
||
read_recphyloxml_multi("examples/example_dupli.recphylo".to_string(), | ||
&mut sp_tree, &mut gene_trees, &mut global_roots); | ||
recphyloxml_processing(&mut sp_tree, &mut gene_trees, &mut options, &config, true, | ||
&transfers, "test_bckg_sepia.svg".to_string()); | ||
println!("Please open output file 'test_bckg_sepia.svg' with your browser"); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters