Skip to content

Commit f351b93

Browse files
committed
update software
1 parent c35d399 commit f351b93

File tree

7 files changed

+200
-97
lines changed

7 files changed

+200
-97
lines changed

physpetool/phylotree/consensustree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def docontree(input, output, rule):
4242
# prepare a dir store result
4343
if not os.path.exists(output):
4444
os.mkdir(output)
45-
consensuseCmd = raxmlpath + "/raxmlHPC-PTHREADS-AVX " + " -J " + rule + " -m GTRCAT -z " + input + " -w " + output + " -n T1"
45+
consensuseCmd = raxmlpath + "/raxmlHPC " + " -J " + rule + " -m GTRCAT -z " + input + " -w " + output + " -n T1"
4646
subprocess.call(consensuseCmd, shell=True)
4747

4848
def do_astral(input,output):

physpetool/phylotree/doraxml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def doraxml(inputfile, outputfile, raxmlpara, thread):
5252
raxmlpath = getlocalpath()
5353
if not os.path.exists(outputfile):
5454
os.mkdir(outputfile)
55-
strs = raxmlpath + "/raxmlHPC-PTHREADS-AVX " + "-T " + threadtostr + " " + raxmlpararet
55+
strs = raxmlpath + "/raxmlHPC " + "-T " + threadtostr + " " + raxmlpararet
5656
# cmd command
5757
cmd = strs + " -s " + inputfile + " -w " + outputfile
5858
subprocess.call(cmd, shell=True)

physpetool/physpe/autobuild.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,8 @@ def starting_esrna(in_put, out_put,
389389
out_retrieve = retrieve16srna(ssu_input, out_put,args_db)
390390
end = time.time()
391391
auto_build_log.info('Retrieving SSU rRNA sequences used time: {} Seconds'.format(end - start))
392-
if not recovery_dic == {}:
393-
recovery(out_retrieve, recovery_dic)
392+
if not recovery_dic == []:
393+
recovery_silva(out_retrieve, recovery_dic, ssu_input)
394394
retrieve_srna_path = os.path.join(out_retrieve, 'rna_sequence.fasta')
395395

396396
fw = open(retrieve_srna_path, 'a')

0 commit comments

Comments
 (0)