Overview
segul
command is structured this way:
<PROGRAM-NAME> <SUBCOMMAND> <OPTIONS> [VALUES] <FLAGS>
The program name is segul
on Linux, MacOS, and Windows Subsystem for Linux, and segul.exe
on Windows. segul
features are available using the subcommands. Each of the subcommands has options, and some of them also have flags. Options require users to input the value, such as the --dir
option that requires users to input the path to the alignment directory: --dir alignment_path/
. Some options are available across all subcommands, whereas the other options are specific to certain subcommands (see below). Flags are used without a value, such as --sort
flag in the convert
subcommand that is used to sort sequences in the output files.
We try to keep segul
command consistent:
- Long options always prefix with double dashes (
--
). For example, the--input
option. - Short options always prefix with a single dash (
-
). For example, the short option of--input
is-i
. - Options with equal sign (
=
), such as--re=
, require the input values to be in a single or double quotation. For example,--re="^Genus"
. - Some options are available both in long and short versions. The rest of the options are only available in long versions.
segul
command options will never be available only in a short version.
Below is the details about all the subcommmands, available options and flags.
USAGE:
segul <SUBCOMMAND>
OPTIONS:
-h, --help Print help information
-V, --version Print version information
SUBCOMMANDS:
concat Concatenate alignments
convert Convert sequence formats
extract Extract sequences from a collection of alignments
filter Filter alignments based on min taxon completeness, alignment length, and
parsimony informative sites
help Print this message or the help of the given subcommand(s)
id Get sample ids from multiple alignments
partition Convert partition formats
remove Remove sequence based on user-defined IDs
rename Batch renaming sequence IDs in alignments
split Split alignments by partitions
summary Compute alignment summary statistics
translate Translate DNA sequences to amino acid sequences
Help options
To show available subcommands, you can type just segul
, segul --help
, or segul -h
. It will show all the available subcommands and their functions.
To show available options in each of the subcommands, use segul <SUBCOMMAND> --help
or segul <SUBCOMMAND> -h
. The help function will show all the options, default value (if available) or possible values you can input when it is limited by the program.
For example, terminal output for segul convert -h
:
segul-convert
Convert sequence formats
USAGE:
segul convert [OPTIONS] --output <STRING> --input-format <SEQ-FORMAT> --datatype <DATATYPE>
OPTIONS:
-d, --dir <PATH> Input a directory path
--datatype <DATATYPE> Specify data type [default: dna] [possible values: dna, aa,
ignore]
-f, --input-format <SEQ-FORMAT> Specify an input format [default: auto] [possible values:
auto, fasta, nexus, phylip]
-F, --output-format <SEQ-FORMAT> Specify an output sequence format [default: nexus] [possible
values: nexus, phylip, fasta, fasta-int, nexus-int, phylip-
int]
-h, --help Print help information
-i, --input <INPUT-PATH>... Input path (include wildcard support)
-o, --output <STRING> Specify an output directory [default: SEGUL-Convert]
--overwrite Remove existing output file(s)/directory
--sort Sort the alignments
Input options
-i
or--input
: Use for a single file input or multiple input using wildcards. This is more flexible than the--dir
input option and can accept multiple values. Available for all subcommands.-d
or--dir
: If your input is a path to a directory. The directory input requires users to specify the input format. Available for all subcommands.
In general, for multi-file inputs, if all your files in a single directory, you should use the -d
or --dir
option. The path will be captured by the log file, which is useful for record keeping.
The standard input option is reserved for complex folder structure or when your alignment extension using uncommon file extensions. It relies on the operating system to provide the input path. In the log file it will only print STDIN
(Standard Input). Using this input option, in most cases, segul
will be able to infer the input format based on the file extension. Therefore, you may not need to input the sequence format using the -f
or --input-format
option.
For example, your alignment files are stored in multiple folders and you would like to generate summary statistics for all of them. Instead of running SEGUL multiple times, you can generate the statistics in a single run using the wildcard option:
segul summary -i folder_1/*.nex folder_2/*.nex folder_3/*.nex
Below are several other examples on using --input
(or -i
in short format):
Inputing multiple file in a directory using wildcard:
segul <SUBCOMMAND> -i alignment-dir/*.fasta
Inputing multiple files in multiple directories:
segul <SUBCOMMAND> -i alignment-dir1/*.fasta alignment-dir2/*.fasta
For unusual file extensions or if the app failed to detect the file format, specify the input format:
segul <SUBCOMMAND> -i alignment-dir/*.aln -f fasta
Input format
Arguments: -f
or --input-format
Availabilities: all subcommands
It is used to specify the input format and support both sequential and interleave format. If you use the standard input --input
or -i
, for most cases, you don't need to specify the input format. segul
will infer it based on the file extension. Specify the input format if your file extension is unsual, for example .aln
instead of .fasta
or .fas
.
Input format options (all in lowercase):
auto
(default)nexus
phylip
fasta
Output
Arguments: -o
or --output
Availabilities: all subcommands
For a single output task, such as converting a single file, or concatenating alignment, the output will be the file name for the output. For a multiple output task, such as converting multiple files to a different format, the output will be the directory name for the output. The app will use the input file name for each output file.
segul
by default write to the current working directory and will check for existing files or directories. It will prompt users whether to remove the files or directories. It will exit if users decide to not remove the existing files or directories. You can allow segul
to remove existing files or directories by using the --overwrite
flag.
Output format
Arguments: -F
or --output-format
Availabilities: all subcommands
By default the output format is nexus
. Use this option to specify the output format. Below is the available output formats.
Sequential formats:
nexus
phylip
fasta
Interleaved formats:
fasta-int
nexus-int
phylip-int
Data types
Argument: --datatype
Availabilities: all subcommands
The app support both DNA and amino acid sequences. By default the data type is set for DNA sequences. If your input file is amino acid sequences, you will need to change the data type to aa
. By specifying the data type, the app will check if your sequence files contain valid IUPAC characters. Except for computing summary statistics, you can set data type to ignore
to skip checking the IUPAC characters. It usually speeds up the computation for up to 40%.
When to use the --datatype ignore
option:
- Your dataset is DNA.
- If your dataset is amino acid sequences, it is either the input is in nexus format or the output is not in nexus format.
- You are sure your sequences contain only IUPAC characters and no spaces in the sequence names, or you have used the same dataset for
segul
input before.
To summarize, available data types:
aa
dna
ignore
Prefix
Arguments: --prefix
Availabilities: concat
, filter
, split
subcommands
The input for this option will be used as a prefix for partition and concatenated alignment filenames. For the split
subcommand, it will be use to prefix the output sequence files.
Input Partition
Arguments: -I
or --input-partition
Availabilities: partition
and split
subcommand
Input input partition for splitting alignments by partition.
Output Partition
Arguments: -P
or --output-part
Availabilities: partition
Specify an output partition format.
Partition format
Arguments: -p
or --part
Availabilities: concat
, 'split', and filter
subcommands
This option is used to specify the partition format. By default the format is nexus. Available options:
charset
(embedded in a nexus sequence)nexus
raxml
Percentage interval
Arguments: -i
or --interval
Availabilities: summary
subcommand
This option is to specify the percentage decrement interval for computing data matrix completeness in summary statistics. The app will stop printing the data matrix completeness statistics when it reaches near zero (the lowest value depends on the interval value) or maximum number of alignments. Default to 5. Available interval: 1
, 2
, 5
, 10
.
Filtering options
Only available for the filter
subcommand. Available options:
-l
or--len
: To filter alignments based on minimal alignment length--percent
: To filter based on percentage of data matrix completeness.--npercent
: The same as--percent
, but accept multiple values. This option allows you to create collections of alignments with different data matrix completeness in a single command.--pinf
: To filter based on the number of parsimony informative sites.--percent-inf
: To filter based on percentage of parsimony informative sites. Calculated based on the highest parsimony informative sites across all alignments.--ntax
: To defined the total number of taxa. By default the app determines the number of taxa in all the alignments based on the numbers of unique IDs.
Extracting options
Only available for the extract
subcommand. Available options:
--file
: Use to input a list of sequence IDs in a txt file.--id
: Use to input a list of sequence IDs using the standard terminal input (stdin). Allow for multiple values.--re=
: Use to input a regular expression to extract matching sequence IDs.
Renaming options
Only available for the rename
subcommand. Available options:
-n
or--name
: Use to input a csv or a tsv file that contains the original names and the new names for the sequence ID.
Translating options
Only available for the translate
subcommand. Available options:
--rf
: To set the reading frame for translating DNA sequences.--table
: To set the translation table. The input number is based on NCBI translation table. Default to the NCBI standard code (Table 1).
Special flags
--codon
: Use to set the partition format to codon model. Available for theconcat
andfilter
subcommands (if you choose to concatenate the result).--concat
: If is set, the app will concatenate filtered alignments in lieu to copying the files. Available for thefilter
subcommand.--sort
: To sort the sequences based on their IDs in alphabetical order. Available for theconvert
subcommand.--show-table
: To show supported NCBI translation table. Only available to thesummary
subcommand.--map
: Map sequence distribution across a collection of alignments. Only available for theid
subcommand.--dry-run
: To check if the app can parse the input IDs correctly. Only available for therename
subcommand.-h
or--help
: To display help information.-V
or--version
: To display the app version information.