Skip to content
Snippets Groups Projects
Commit 6977d26f authored by Studer Gabriel's avatar Studer Gabriel
Browse files

compare-structures: docu update

Document default values for minimum peptide/nucleotide lengths
parent b244fc36
Branches
Tags
No related merge requests found
......@@ -24,7 +24,7 @@ options, this is a dictionary with 8 keys describing model/reference comparison:
* "chem_groups": Groups of polypeptides/polynucleotides from reference that
are considered chemically equivalent. You can derive stoichiometry from this.
Contains only chains that are considered in chain mapping, i.e. pass a
size threshold (defaults: 10 for peptides, 4 for nucleotides).
size threshold (defaults: 6 for peptides, 4 for nucleotides).
* "chem_mapping": List of same length as "chem_groups". Assigns model chains to
the respective chem group. Again, only contains chains that are considered
in chain mapping.
......@@ -500,7 +500,8 @@ def _ParseArgs():
dest="min_pep_length",
default = 6,
type=int,
help=("Relevant parameter if short peptides are involved in scoring."
help=("Default: 6 - "
"Relevant parameter if short peptides are involved in scoring. "
"Minimum peptide length for a chain in the target structure to "
"be considered in chain mapping. The chain mapping algorithm "
"first performs an all vs. all pairwise sequence alignment to "
......@@ -515,7 +516,8 @@ def _ParseArgs():
dest="min_nuc_length",
default = 4,
type=int,
help=("Relevant parameter if short nucleotides are involved in scoring."
help=("Default: 4 - "
"Relevant parameter if short nucleotides are involved in scoring."
"Minimum nucleotide length for a chain in the target structure to "
"be considered in chain mapping. The chain mapping algorithm "
"first performs an all vs. all pairwise sequence alignment to "
......
......@@ -76,7 +76,7 @@ Details on the usage (output of ``ost compare-structures --help``):
* "chem_groups": Groups of polypeptides/polynucleotides from reference that
are considered chemically equivalent. You can derive stoichiometry from this.
Contains only chains that are considered in chain mapping, i.e. pass a
size threshold (defaults: 10 for peptides, 4 for nucleotides).
size threshold (defaults: 6 for peptides, 4 for nucleotides).
* "chem_mapping": List of same length as "chem_groups". Assigns model chains to
the respective chem group. Again, only contains chains that are considered
in chain mapping.
......@@ -359,25 +359,25 @@ Details on the usage (output of ``ost compare-structures --help``):
Dump additional info on model and reference residues
that occur in pepnuc alignments.
--min-pep-length MIN_PEP_LENGTH
Relevant parameter if short peptides are involved in
scoring.Minimum peptide length for a chain in the
target structure to be considered in chain mapping.
The chain mapping algorithm first performs an all vs.
all pairwise sequence alignment to identify "equal"
chains within the target structure. We go for simple
sequence identity there. Short sequences can be
problematic as they may produce high sequence identity
alignments by pure chance.
Default: 6 - Relevant parameter if short peptides are
involved in scoring. Minimum peptide length for a
chain in the target structure to be considered in
chain mapping. The chain mapping algorithm first
performs an all vs. all pairwise sequence alignment to
identify "equal" chains within the target structure.
We go for simple sequence identity there. Short
sequences can be problematic as they may produce high
sequence identity alignments by pure chance.
--min-nuc-length MIN_NUC_LENGTH
Relevant parameter if short nucleotides are involved
in scoring.Minimum nucleotide length for a chain in
the target structure to be considered in chain
mapping. The chain mapping algorithm first performs an
all vs. all pairwise sequence alignment to identify
"equal" chains within the target structure. We go for
simple sequence identity there. Short sequences can be
problematic as they may produce high sequence identity
alignments by pure chance.
Default: 4 - Relevant parameter if short nucleotides
are involved in scoring.Minimum nucleotide length for
a chain in the target structure to be considered in
chain mapping. The chain mapping algorithm first
performs an all vs. all pairwise sequence alignment to
identify "equal" chains within the target structure.
We go for simple sequence identity there. Short
sequences can be problematic as they may produce high
sequence identity alignments by pure chance.
.. _ost compare ligand structures:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment