Skip to content

masker example

aast242 edited this page Jul 21, 2021 · 3 revisions

Masking a fungal genome using the masker module

The files used to perform this example can be found in bin/examples/

All example commands assume the subject and query files are in the same directory.

Inputs

  • Our genome file will be LpKY97.fasta
    • This is a fungal genome which has been resolved to the chromosome level. It can also be downloaded here.

The Goal

Our goal in this example is to mask all repetitive regions in the LpKY97 genome using FACET's masker module

The Command

To mask all repetitive regions in the LpKY97 genome, the following FACET command can be used:

FACET masker LpKY97.fasta -v

FACET will then run a self-BLAST and use the alignment information to mask repetitive regions in the genome. If you want more information on what constitutes a 'repetitive region', check this out.

Because we specified the verbose flag (-v), information about what FACET is doing will be printed to the stdout. The end of that should look something like this:

The Output

Once FACET has finished (this may take a couple minutes depending on how large the genome is), a masked genome file will be output in the directory the program was called from. Lets take a peek at the head of the masked file:

We can easily see that some bases at the very beginning of the genome have been masked with lowercase n's. Mission accomplished!

Clone this wiki locally