tseemann / prokka

:zap: :aquarius: Rapid prokaryotic genome annotation
843 stars 226 forks source link

Providing multiple .gbk's to --proteins option #585

Closed 7PintsOfCherryGarcia closed 3 years ago

7PintsOfCherryGarcia commented 3 years ago

Is this possible, or do I have to go through the custom database route?

tseemann commented 3 years ago

@7PintsOfCherryGarcia you can concatenate Genbank files and it should work.

% cat *.gbk foo.gbff plasmids.gbk > proteins.gbk
% prokka --proteins all.gbk

If you use bash it might also work using subshells

% prokka --proteins <(cat *.gbk)