Skip to content

Commit

Permalink
Update manual
Browse files Browse the repository at this point in the history
  • Loading branch information
davidemms committed Jun 14, 2017
1 parent 0628290 commit 0a83f97
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Binary file modified OrthoFinder-manual.pdf
100755 → 100644
Binary file not shown.
Binary file modified OrthoFinder-options.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions Tests/test_orthofinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
goldResultsDir_smallExample = baseDir + "ExpectedOutput/SmallExampleDataset/"
goldPrepareBlastDir = baseDir + "ExpectedOutput/SmallExampleDataset_PreparedForBlast/"

version = "1.1.7"
version = "1.1.8"
requiredBlastVersion = "2.2.28+"

citation = """When publishing work that uses OrthoFinder please cite:
Expand Down Expand Up @@ -109,7 +109,7 @@
-T tree_program, --alignment tree_program
Use tree_program for tree inference from multiple sequence alignments (requires '-M msa' option). [Default in fasttree]
Options: fasttree, iqtree, raxmlAVX.
Options: fasttree, iqtree, raxml.
-I inflation_parameter, --inflation inflation_parameter
Specify a non-default inflation parameter for MCL. Not recommended. [Default is 1.5]
Expand Down Expand Up @@ -745,7 +745,7 @@ def test_msa_tree_methods(self):
self.assertTrue("mafft" in self.stdout)
self.assertTrue("muscle" in self.stdout)
self.assertTrue("fasttree" in self.stdout)
self.assertTrue("raxmlAVX" in self.stdout)
self.assertTrue("raxml" in self.stdout)
self.assertTrue("iqtree" in self.stdout)


Expand Down
2 changes: 1 addition & 1 deletion orthofinder/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"cmd_line": "muscle -in INPUT -out OUTPUT"
},

"raxmlAVX":{
"raxml":{
"program_type": "tree",
"cmd_line": "raxmlHPC-AVX -m PROTGAMMALG -p 12345 -s INPUT -n IDENTIFIER",
"ouput_filename": "PATH/RAxML_bestTree_IDENTIFIER"
Expand Down
2 changes: 1 addition & 1 deletion orthofinder/scripts/orthologues_from_recon_trees.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def make_dicts(dlcparResultsDir, outputDir):
for line in rec:
reconlist.append(line.split())
speclist = [x[0] for x in reconlist if 'spec' == x[2]]
speclist = [t&n for n in speclist]
speclist = [t&n if n in t else t for n in speclist]
for node in speclist:
c1, c2 = node.get_children()
for leaf1 in c1.get_leaf_names():
Expand Down
2 changes: 1 addition & 1 deletion orthofinder/scripts/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
FileInfo = namedtuple("FileInfo", "workingDir graphFilename")

picProtocol = 1
version = "1.1.7"
version = "1.1.8"

# Fix LD_LIBRARY_PATH when using pyinstaller
my_env = os.environ.copy()
Expand Down

0 comments on commit 0a83f97

Please sign in to comment.