0

これは私が試してきたことです

def test():
    import sys
    import subprocess
    file1 = open(sys.argv[1],"r") #this is the input to fastacmd
    idx = file1.readlines()
    outname = idx[0].split("\r\n")[0]
    foutname = outname + "_f_output"
    astaseq = subprocess.call(["fastacmd","-i", file1, "-o",foutname])
    blastresult = subprocess.call(["blastp", "-db", "db1.faa", "-query", foutname, "-out", outname])

しかし、私はこれに巻き込まれ、本当に意味がわかりません

File "test.py", line 16, in <module>
    fastacmd_blastp()
  File "test.py", line 11, in test
    fastaseq = subprocess.call(["fastacmd","-i", file1, "-o",fastaoutname])
  File "/usr/local/lib/python2.7/subprocess.py", line 486, in call
    return Popen(*popenargs, **kwargs).wait()
  File "/usr/local/lib/python2.7/subprocess.py", line 672, in __init__
    errread, errwrite)
  File "/usr/local/lib/python2.7/subprocess.py", line 1202, in _execute_child
    raise child_exception
TypeError: execv() arg 2 must contain only strings

誰でも助けることができますか?ありがとう

4

1 に答える 1

2

Guess the input file should be the filename sys.argv[1] and not the python handle to the file. (http://nebc.nerc.ac.uk/bioinformatics/documentation/blast/fastacmd.html)

In other words, change astaseq = subprocess.call(["fastacmd","-i", file1, "-o",foutname]) to astaseq = subprocess.call(["fastacmd","-i", sys.argv[1], "-o",foutname])

于 2013-06-18T11:10:02.150 に答える