VCF -> FASTA is currently implemented in slim_sims.py, but iterates through the VCFs one at a time.
Using mp could involve pulling in the full list of VCFs and then breaking them into chunks (potentially with itertools) and then splitting those chunks across cores.
VCF -> FASTA is currently implemented in
slim_sims.py
, but iterates through the VCFs one at a time.Using
mp
could involve pulling in the full list of VCFs and then breaking them into chunks (potentially withitertools
) and then splitting those chunks across cores.