-
Recent Posts
Recent Comments
- Davo on DESeq vs. edgeR vs. baySeq
- Alex Williams on DESeq vs. edgeR vs. baySeq
- Davo on Perl and SAM
- Peter Briggs on Perl and SAM
- dongyu on DESeq vs. edgeR vs. baySeq
Tag Cloud
6mer annotation bidirectional genes bioinformatics CAGE clustering coexpression correlation cryptography de novo assembly DGE etc fork genome GO graph heatmap histones home mapping miRNA motif neurobiology parser pathway pca perl promoter python R refseq rnaseq SAM scan spearman statistics trna ubuntu visualisationArchives
Meta
Tag Archives: fork
Forking in Perl 2
Build up an index of files to process, e.g. sam files. Fork out 16 child processes, each time processing and eliminating one file from the index. As with all my code, use at your own risk. Comments and suggestions always … Continue reading
Forking in Perl
Foreach item in the array, start a fork. $pid returns 0 if it is the child process. This way you can spawn 4 child processes from one parent. This page explains it all and the code shown below is an … Continue reading