Results for "PIPE"

Tags

  • Subprocess pkg

    Subprocess is one of simplest way of running linux command from within python code Example: if you want to run fastqc for QC of fastq file: from subprocess import Popen,PIPE,call p=Popen(["fastqc","-f","fastq","-o", "/home/name/result/","/dev/stdin"],stdin=fopen("read.fastq","r") ,stdout=PIPE...

    Tags: python, linux, PIPE

    3539 days ago