Skip to content

Commit

Permalink
added print statement that describes the run
Browse files Browse the repository at this point in the history
  • Loading branch information
mshakya committed Apr 2, 2020
1 parent 412a0c5 commit 158b5df
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
18 changes: 7 additions & 11 deletions src/phame
Original file line number Diff line number Diff line change
Expand Up @@ -313,27 +313,23 @@ print "\tproject = $project\n";
print "\tcdsSNPS = $gsignal\n";
print "\tbuildSNPdb:\t$buildSNPdb\n";
print "\tdata:\t$data\n";
print "\ttree:\t$tree\n";
if ( $tree == 1){
print "\tTrees will be made using FastTree.\n"
}
if ( $tree == 2){
} elsif ( $tree == 2){
print "\tTrees will be made using RaxML.\n"
}

if ( $tree == 3){
} elsif ( $tree == 3){
print "\tTrees will be made using iqtree.\n"
}

if ( $tree == 4){
} elsif ( $tree == 4){
print "\tTrees will be made using all three methods.\n"
} elsif ($tree == 0){
print "\tNo Trees to be made.\n"
}

if ( $bsignal == 0){
if ( $bsignal == 0 and $tree > 0 ){
print "\tNo bootstraps.\n"
}

if ( $bsignal == 1){
if ( $bsignal == 1 and $tree > 0 ){
print "\t$bootstrap bootstraps!\n"
}

Expand Down
2 changes: 1 addition & 1 deletion test/ctl_files/t7_ebola_cmp_preads.ctl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
workdir = ../workdirs/t7_ebola_complete_pread # directory where contigs/reads files are located and output is stored

reference = 1 # 0:pick a random reference; 1:use given reference; 2: use ANI based reference
reffile = KJ660347.fasta # reference filename
reffile = KJ660347.ref_genome.fasta # reference filename

project = t7 # main alignment file name

Expand Down
2 changes: 1 addition & 1 deletion test/ctl_files/t9_ebola_ctg_preads.ctl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
workdir = ../workdirs/t9_ebola_contigs_pread # directory where contigs/reads files are located and output is stored

reference = 1 # 0:pick a random reference; 1:use given reference; 2: use ANI based reference
reffile = KJ660347.fasta # reference filename
reffile = KJ660347.ref_genome.fasta # reference filename

project = t9 # main alignment file name

Expand Down

0 comments on commit 158b5df

Please sign in to comment.