I ran this in Python 3.5:
import subprocess
subprocess.run(
'some_command --option <(zcat some_file_1.gz) <(zcat some_file_2.gz)',
shell=True
)
Got this error:
/bin/sh: -c: line 0: syntax error near unexpected token `('
Any help will be greatly appreciated!