<div dir="ltr">Yes, subprocess is very powerful but tricky.<div><br></div><div>Sadly it doesn't help with giving a nice syntax for building command lines, which for me was the main thing our Bio.Application framework added. Perhaps someone else on the list will have a good suggestion.<div><br></div><div><div>Peter</div></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, May 10, 2020 at 5:32 PM Ivan Gregoretti <<a href="mailto:ivangreg@gmail.com">ivangreg@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi Peter.<br>
<br>
I am afraid that I do not have a satisfactory answer for you.<br>
<br>
Whenever I have used subprocess in conjunction with biopython it has<br>
been to run a command line child process either piping-in, piping-out,<br>
or both.<br>
<br>
I always found it to be hard to code. That would be the con.<br>
<br>
The pros is that I have always found a solution for my problem. The<br>
subprocess module is, indeed, very comprehensive.<br>
<br>
Thank you.<br>
<br>
Ivan<br>
<br>
<br>
On Sun, May 10, 2020 at 6:17 AM Peter Cock <<a href="mailto:p.j.a.cock@googlemail.com" target="_blank">p.j.a.cock@googlemail.com</a>> wrote:<br>
><br>
> Thanks Ivan,<br>
><br>
> We already recommended subprocess when the default execution mechanism in our command line wrappers is not enough (eg using pipes).<br>
><br>
> How would you construct your command lines though?<br>
><br>
> Peter<br>
><br>
> On Sun, 10 May 2020 at 00:26, Ivan Gregoretti <<a href="mailto:ivangreg@gmail.com" target="_blank">ivangreg@gmail.com</a>> wrote:<br>
>><br>
>> Hello Peter.<br>
>><br>
>> I find the subprocess library to be the most attractive.<br>
>> I comes with a large set of functionalities around it.<br>
>> Is is well established as well. I think that, should a user encounter<br>
>> an error, it would be relatively easier to successfully search for<br>
>> answers.<br>
>><br>
>> This is just my perspective. Hopefully disagreeing views will<br>
>> contribute to my education.<br>
>><br>
>> Thank you Peter for asking for the opinion of the community.<br>
>><br>
>> Ivan<br>
>><br>
>><br>
>> On Sat, May 9, 2020 at 12:15 PM Peter Cock <<a href="mailto:p.j.a.cock@googlemail.com" target="_blank">p.j.a.cock@googlemail.com</a>> wrote:<br>
>> ><br>
>> > Dear Biopythoneers,<br>
>> ><br>
>> > Biopython has a lot of command line tool wrappers, based around the objects in Bio/Application/__init__.py, for building a command line string and running it. Some time ago I started to think that we might actually be better off dropping our in-house command line wrappers, and recommending a standard or third party library approach for defining and executing command line strings instead.<br>
>> ><br>
>> > Taking an example in our tutorial, running the blastx tool from NCBI BLAST+. Currently Biopython provides a specific object for the blastx command, which knows all the expected command arguments, can do some validation, and even has some basic help text included for each of them:<br>
>> ><br>
>> ><br>
>> > >>> from Bio.Blast.Applications import NcbiblastxCommandline<br>
>> > >>> help(NcbiblastxCommandline)<br>
>> > ...<br>
>> > >>> blastx_cline = NcbiblastxCommandline(query="opuntia.fasta", db="nr", evalue=0.001, outfmt=5, out="opuntia.xml")<br>
>> > >>> blastx_cline<br>
>> > NcbiblastxCommandline(cmd='blastx', out='opuntia.xml', outfmt=5, query='opuntia.fasta',<br>
>> > db='nr', evalue=0.001)<br>
>> > >>> print(blastx_cline)<br>
>> > blastx -out opuntia.xml -outfmt 5 -query opuntia.fasta -db nr -evalue 0.001<br>
>> > >>> stdout, stderr = blastx_cline()<br>
>> ><br>
>> ><br>
>> > This works quite nicely, but writing a unique class for each command line tool we wish to support is a lot of quiet tedious work, especially if including minimal documentation for the arguments or argument validation. This is also an on-going maintenance problem - one of the issues I think we should fix before the next Biopython release is updating the NCBI BLAST+ wrappers as new arguments have been added.<br>
>> ><br>
>> > Some tools have a rather cryptic command line API, and in those cases perhaps our efforts are sensible. However, with tools like NCBI BLAST+ where is a clear command line API, and I don't see that our efforts actually add a great deal over constructing the string in code and calling subprocess:<br>
>> ><br>
>> ><br>
>> > >>> import subprocess<br>
>> > >>> cmd = "blastx -query opuntia.fasta -db nr -out opuntia.xml -evalue 0.001 -outfmt 5"<br>
>> > >>> subprocess.check_call(cmd, shell=True)<br>
>> ><br>
>> ><br>
>> > There are third party libraries which might be easier? For example, the sh library supports our our current style with keyword arguments:<br>
>> ><br>
>> ><br>
>> > >>> from sh import blastx<br>
>> > >>> blastx(query="opuntia.fasta", db="nr", out="opuntia.xml", evalue="0.001", outfmt="5", _long_prefix="-")<br>
>> ><br>
>> ><br>
>> > You can avoid repeating the extra argument due to the NCBI not following the minus-minus prefix convention, e.g.:<br>
>> ><br>
>> ><br>
>> > >>> import sh<br>
>> > >>> blastx = sh.blastx.bake(_long_prefix="-")<br>
>> > >>> blastx(query="opuntia.fasta", db="nr", out="opuntia.xml", evalue="0.001", outfmt="5")<br>
>> ><br>
>> ><br>
>> > See <a href="https://github.com/amoffat/sh" rel="noreferrer" target="_blank">https://github.com/amoffat/sh</a><br>
>> ><br>
>> > This is close to the same usability our wrapper offers, but with no ongoing maintenance burden. It would need more investigation (especially commands where the order is critical, often seen on macOS but not Linux), but Windows support aside it seems attractive.<br>
>> ><br>
>> > If there was a cross-platform system which offered this Python-like syntax for specifying the command line arguments, that would be a tempting alternative. I don't think plumbum (latin for lead, as used for pipes in the past) does, and I find this form heavy:<br>
>> ><br>
>> > >>> from blumbum import local<br>
>> > >>> cmd = local["blastx"]["-query", "opuntia.fasta", "-db", "nr", "-out", "opuntia.xml", "-evalue", "0.001", "-outfmt", "5"]<br>
>> > >>> cmd()<br>
>> > ''<br>
>> ><br>
>> > See <a href="https://github.com/tomerfiliba/plumbum" rel="noreferrer" target="_blank">https://github.com/tomerfiliba/plumbum</a><br>
>> ><br>
>> > What do people think? Do you have a favourite third party library for this kind of thing?<br>
>> ><br>
>> > Peter<br>
>> ><br>
>> > _______________________________________________<br>
>> > Biopython mailing list  -  <a href="mailto:Biopython@mailman.open-bio.org" target="_blank">Biopython@mailman.open-bio.org</a><br>
>> > <a href="https://mailman.open-bio.org/mailman/listinfo/biopython" rel="noreferrer" target="_blank">https://mailman.open-bio.org/mailman/listinfo/biopython</a><br>
</blockquote></div>