gpt4 book ai didi

python - 命令列表的 subprocess.Popen 解析有问题;管道未正确发送

转载 作者:太空宇宙 更新时间:2023-11-04 03:52:44 25 4
gpt4 key购买 nike

当我在解释器中运行以下命令时

infile_intersect = subprocess.Popen(['cut', '-f', '1,2,3,4,5', infile, r'|', 'intersectBed', '-a', 'stdin', '-b', bound_motif, '-wo', r'|', 'sort', '-k', '1,1', '-k', '2,2n', '|uniq'], stdout=subprocess.PIPE).communicate()

我收到错误 cut: invalid option -- a 但是当我对列表进行空格连接时它似乎没问题

>>> ' '.join(['cut', '-f', '1,2,3,4,5', infile, r'|', 'intersectBed', '-a', 'stdin', '-b', bound_motif, '-wo', r'|', 'sort', '-k', '1,1', '-k', '2,2n', '|uniq'])
'cut -f 1,2,3,4,5 test.bed | intersectBed -a stdin -b ENCODE.tf.bound.union.bed -wo | sort -k 1,1 -k 2,2n |uniq'

貌似管道没有正确发出,但我不确定为什么

最佳答案

这不是您使用子流程进行管道传输的方式,将 | 与列表输入表单一起使用是无效的。您应该将完整的字符串传递给它并使用 shell=True 或像我在下面的示例中所做的那样使用管道:

>>> import subprocess
>>> p = subprocess.Popen(['cat', 'abc1'], stdout=subprocess.PIPE)
>>> p1 = subprocess.Popen(['uniq', '-c'], stdin=p.stdout, stdout=subprocess.PIPE)
>>> print p1.communicate()[0]
3 word1
1 word3
1 word4
1 word5

使用字符串和 shell=True

>>> print subprocess.Popen('cat abc1 | uniq -c', shell=True,
stdout=subprocess.PIPE).communicate()[0]
3 word1
1 word3
1 word4
1 word5

来自 docs :

Warning Invoking the system shell with shell=True can be a security hazard if combined with untrusted input.

关于python - 命令列表的 subprocess.Popen 解析有问题;管道未正确发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20434039/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com