Last active
August 29, 2015 14:11
-
-
Save nickloman/48a15e183fb17c7fb094 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
touch a.fasta | |
touch b.fasta | |
touch c.fasta | |
find . -name "*.fasta" | parallel echo union -sequence {} -sformat fasta -outseq {}.union.fasta -osformat fasta -auto | |
find . -name "*.fasta" | xargs -L 1 -I '{}' echo union -sequence {} -sformat fasta -outseq {}.union.fasta -osformat fasta -auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment