I've been using it extensively with the ::: notation to feed data files into a pipeline in parallel, and it does exactly what I want it to do.
But today it goes to a whole new level, as I realize there is a whole other side to the tool: the ability to feed parts of a single input file into a pipeline in parallel.
For example, BLAST can be effectively (embarrassingly) parallelized as follows:
cat temp.fa | parallel -j 10 --block 100k --recstart '>' --pipe blastn -evalue 0.01 -outfmt 6 -db refseq_genomic -query - > result.txt
The magic is in the pipe option. Of course, we've all written blast parallelizers, but I've never seen a solution as neat and simple as this one liner!
This is from Michael Kuhn's excellent post on the subject. Thanks!