Sequence Removal
This feature is the opposite of sequence extraction feature. It removes sequences based on a list of IDs or a regular expression. It is faster than sequence extraction if you remove less than a half of the sequences.
Steps
- Select the
Alignment
button from the navigation bar. - Select
Remove sequences
from the dropdown menu. - Add the input files by clicking the
Add file
button. On desktop platforms, you can also input a directory by clicking theAdd directory
button. The app will look for matching files in the directory. - Select the option to remove sequences based on a list of IDs or a regular expression.
- Add the list of IDs or regular expression.
- Add the output directory by clicking the
Add directory
button. - Select the output sequence format.
- Click the
Run
button labeledRemove
to start the task.
Removal Options
Remove by ID
The IDs should be separated by semicolon (;
). For example, seq1;seq2;seq3
.
Remove by Regular Expression
SEGUI uses Rust regex. The regular expression should be a valid regex pattern. For example, seq[0-9]+
will remove all sequences with IDs like seq1
, seq2
, seq3
, and so on.