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",...
github.com - Ventoy is an open source tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files. With ventoy, you don't need to format the disk over and over, you just need to copy the image files to the USB drive and boot it. You can copy many image...
Elgg is an open source social networking engine that allows the creation of social environments such as campus social networks and internal collaborative platforms for organizations. Elgg offers a number of social networking features including...
There are other popular measures of edit distance, which are calculated using a different set of allowable edit operations. For instance,
the Damerau–Levenshtein distance allows insertion, deletion, substitution, and...
As a Bioinformatician/ Computational biologist we swim in the ocean of genomic/proteomics data, and play with them with an ease. In our day to day simulation, analysis, comparative study we do need to run exhaustive programs, which might take more...
You as a bioinformatican run lots of program on your servers. Sometime the shared server is also used by your colleague. If server is busy you sometime need to check the running programs and want to monitor the running programs as well. The "top"...
Linux Commands Cheat Sheet File System ls — list items in current directory ls -l — list items in current directory and show in long format to see perimissions, size, an modification...
It's been a while since I last installed BLAT and when I went to the download directory at UCSC: http://users.soe.ucsc.edu/~kent/src/ I found that the latest blast is now version 35 and that the code to download was: blatSrc35.zip....