Filters element in crosslinking.xml
More...
#include <ms_crosslinking_filters.hpp>
Public Member Functions | |
ms_crosslinking_filters () | |
Default constructor. | |
ms_crosslinking_filters (const ms_crosslinking_filters &src) | |
Copying constructor. | |
virtual | ~ms_crosslinking_filters () |
Destructor. | |
void | appendParameter (const ms_crosslinking_parameter *item) |
Adds a new parameter at the end of the list. | |
virtual void | clearParameters () |
Deletes all parameters from the list. | |
void | copyFrom (const ms_crosslinking_filters *right) |
Copies all content from another instance. | |
void | copyFrom (const ms_crosslinking_parameters *right) |
Copies all content from another instance. | |
void | defaultValues () |
Call this member if you want to start again. | |
virtual bool | deleteParameterByName (const char *name) |
Remove a parameter from the list in memory by its unique name. | |
virtual bool | deleteParameterByNumber (const int idx) |
Remove a parameter from the list in memory by its index. | |
virtual int | getNumberOfParameters () const |
Returns the number of parameters held. | |
const ms_crosslinking_parameter * | getParameterByName (const char *name) const |
Returns a parameter object by its name or a null value in case of not found. | |
const ms_crosslinking_parameter * | getParameterByNumber (const int idx) const |
Returns a parameter object by its number. | |
virtual std::string | getParameterSchemaType () const |
Obtain a symbolic name for the parameter element schema type. | |
virtual std::string | getSchemaType () const |
Returns name of the schema type that can be used to validate this element. | |
ms_crosslinking_filters & | operator= (const ms_crosslinking_filters &right) |
C++ style assignment operator. | |
bool | updateParameterByName (const char *name, const ms_crosslinking_parameter *param) |
Update the information for a specific parameter refering to it by its unique name. | |
bool | updateParameterByNumber (const int idx, const ms_crosslinking_parameter *param) |
Update the information for a specific parameter refering to it by its index. | |
std::string | validateDeep (const ms_xml_schema *pSchemaFileObj) const |
Performs validation of all child elements in addition to 'shallow' validation. | |
std::string | validateShallow (const ms_xml_schema *pSchemaFileObj) const |
Performs simple validation of the top-level elements only. | |
Filters element in crosslinking.xml
The filters section contains a list of parameters. These specify which spectra are excluded from crosslinked matching.
In Mascot 2.7, available filters are:
MinPrecursorMr
: minimum relative precursor mass (Da) MinLen
: minimum length of the shortest peptide in the pair MinCharge
: minimum precursor charge (absolute value). For example, specify "4" to exclude charge states -3, -2, -1, +1, +2 and +3. Default constructor.
Assigns reasonable default values to all internal members.
ms_crosslinking_filters | ( | const ms_crosslinking_filters & | src | ) |
Copying constructor.
src | another instance of this class to copy the content from. |
void copyFrom | ( | const ms_crosslinking_filters * | right | ) |
Copies all content from another instance.
right | another instance of this class to copy the content from. |
|
inherited |
Copies all content from another instance.
right | another instance of this class to copy the content from. |
|
virtualinherited |
Remove a parameter from the list in memory by its unique name.
name | name of the parameter for deletion. |
Implements ms_xml_parameters.
|
virtualinherited |
Remove a parameter from the list in memory by its index.
idx | number of the parameter for deletion from 0 to (getNumberOfParameters() - 1). |
Implements ms_xml_parameters.
|
virtualinherited |
Returns the number of parameters held.
Implements ms_xml_parameters.
|
inherited |
Returns a parameter object by its name or a null value in case of not found.
name | name of the parameter to find. |
|
inherited |
Returns a parameter object by its number.
idx | number of the parameter from 0 to (getNumberOfParameters() - 1). |
|
virtual |
Obtain a symbolic name for the parameter element schema type.
The obtained type name can be used to get a corresponding type description object from ms_xml_schema.
Reimplemented from ms_crosslinking_parameters.
|
virtual |
Returns name of the schema type that can be used to validate this element.
Additional information about the current object can be retrieved from the associated XML schema file. Every element in an XML document is defined with a named type, which you can use to find out what kind of limits (numerical or otherwise) are defined for values of that type.
Reimplemented from ms_crosslinking_parameters.
ms_crosslinking_filters & operator= | ( | const ms_crosslinking_filters & | right | ) |
C++ style assignment operator.
right | another instance of this class to copy the content from. |
|
inherited |
Update the information for a specific parameter refering to it by its unique name.
name | name of the parameter for updating. |
param | an object to copy the content from. |
|
inherited |
Update the information for a specific parameter refering to it by its index.
idx | number of the parameter for updating from 0 to (getNumberOfParameters() - 1). |
param | an object to copy the content from. |
|
inherited |
Performs validation of all child elements in addition to 'shallow' validation.
The current object can be checked against an XML schema. When using this method all possible checks are performed. However, this is not a substitute for the schema: some schema-defined constraint are not applied (unique fields, foreign keys etc.).
In order to make sure that current object is free from all syntax errors validate it as a part of the whole document.
pSchemaFileObj | a valid schema object instance to validate against. |
|
inherited |
Performs simple validation of the top-level elements only.
The current object can be checked against some basic constraints in a schema without looking at children element types. When using this method only the current object and children derived from standard types (for example, restrictions with enumerations) are checked. For more thorough validation, use validateDeep().
pSchemaFileObj | a valid schema object instance to validate against. |