Anna Syme

Click name ↑ to return to homepage

Using Bandage on the command line

To run

cd ~/Bandage
Bandage.app/Contents/MacOS/Bandage --help
Bandage.app/Contents/MacOS/Bandage image [your gfa file] [output.png]

Formatting options

Bandage.app/Contents/MacOS/Bandage --helpall

Batch edit gfa files

For editing gfa files in a folder: an example:

for file in ~/just-gfas/*; \
do Bandage.app/Contents/MacOS/Bandage image\
$file ${file}.png \
--lengths \ 
--depth \
--fontsize 6 \
--edgelen 50 \
--toutline 2 \
--minnodlen 50 \
--colour blastsolid; \
done