Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 655 Bytes

File metadata and controls

40 lines (30 loc) · 655 Bytes

EMBOSS Utilities

Old stuff, but still really useful

dotmatcher for Dotplots

# show extensive help
dotmatcher -help -verbose
# basic usage
dotmatcher \
    -asequence <input.fasta> \
    -bsequence <input.fasta> \
    -windowsize 20 \
    -threshold 75 \
    -graph png \
    -goutfile <outfile_prefix> \
    -gtitle dotplot

## suffix is always .1.png

PNG is by default quite low resolution. To generate a higher resolution image, use -graph ps and then

# 300 dpi
convert \
    -density 300 \
    -background white \
    -alpha remove \
    -rotate 90 \
    <outfile_prefix>.ps <outfile_prefix>.png