Functions:
ajPdbtospReadAllRawNew | Reads the swissprot:pdb equivalence table available at URL (1) (1) http://www.expasy.ch/cgi-bin/lists?pdbtosp.txt and returns the data as a list of Pdbtosp objects. |
ajPdbtospReadNew | Read a Pdbtosp object from a file in embl-like format (see documentation for DOMAINATRIX "pdbtosp" application). |
ajPdbtospReadCNew | Read a Pdbtosp object from a file in embl-like format. Memory for the object is allocated. |
ajPdbtospReadAllNew | Read all the Pdbtosp objects in a file in embl-like format (see documentation for DOMAINATRIX "pdbtosp" application) and writes a list of these objects. It then sorts the list by PDB id. |
ajCmapReadINew | Read a Cmap object from a file in CON format (see documentation for DOMAINATRIX "contacts" application). Takes the chain identifier as an integer. If the arguments mod and chn are both 0, the function will read the next Cmap in the file. |
ajCmapReadCNew | Read a Cmap object from a file in CON format (see documentation for DOMAINATRIX "contacts" application). Takes the chain identifier as a character. |
ajCmapReadAllNew | Read every Cmap object from a file in CON format (see documentation for DOMAINATRIX "contacts" application) and returns a list of these objects. |
ajCmapReadNew | Read a Cmap object from a file in CON format (see documentation for DOMAINATRIX "contacts" application). This is not usually called by the user, who uses ajCmapReadINew or ajCmapReadCNew instead. If mode==CMAP_MODE_I, chn==0 and mod==0, the function will read the next Cmap in the file. |
ajVdwallReadNew | Read a Vdwall object from a file in embl-like format (see documentation for the EMBASSY DOMAINATRIX package). |
ajHetReadNew | Read heterogen dictionary, the Het object is allocated. |
ajHetReadRawNew | Reads a dictionary of heterogen groups available at http://pdb.rutgers.edu/het_dictionary.txt and writes a Het object. |
ajPdbReadFirstModelNew | Reads a clean coordinate file file (see documentation for DOMAINATRIX "pdbparse" application) and writes a filled Pdb object. Data for the first model only is read in. |
ajPdbReadAllModelsNew | Reads a clean coordinate file (see documentation for DOMAINATRIX "pdbparse" application) and writes a filled Pdb object. Data for all models is read. |
ajPdbReadNew | Reads a clean coordinate file file (see documentation for DOMAINATRIX "pdbparse" application) and writes a filled Pdb object. Data for the first model only is read in. |
ajPdbReadoldNew | Reads a clean coordinate file (see documentation for DOMAINATRIX "pdbparse" application) lacking residue-level description in RE records and writes a filled Pdb object. |
ajPdbReadoldFirstModelNew | Reads a clean coordinate file file (see documentation for DOMAINATRIX "pdbparse" application) lacking residue-level description in RE records and writes a filled Pdb object. Data for the first model only is read in. |
ajAtomNew | Atom object constructor. This is normally called by the ajChainNew function. |
ajResidueNew | Residue object constructor. This is normally called by the ajChainNew function. |
ajChainNew | Chain object constructor. This is normally called by the ajPdbNew function |
ajPdbNew | Pdb object constructor. Fore-knowledge of the number of chains is required. This is normally called by the functions that read PDB files or clean coordinate files (see embpdb.c & embpdbraw.c). |
ajHetentNew | Hetent object constructor. |
ajHetNew | Het object constructor. |
ajVdwallNew | Vdwall object constructor. This is normally called by the ajVdwallReadNew function. Fore-knowledge of the number of residues is required. |
ajVdwresNew | Vdwres object constructor. This is normally called by the ajVdwallReadNew function. Fore-knowledge of the number of atoms is required. |
ajCmapNew | Cmap object constructor. This is normally called by the ajCmapReadNew function. Fore-knowledge of the dimension (number of residues) for the contact map is required. |
ajPdbtospNew | Pdbtosp object constructor. Fore-knowledge of the number of entries is required. This is normally called by the ajPdbtospReadCNew / ajPdbtospReadNew functions. |
AjPList ajPdbtospReadAllRawNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Input file |
AjPList | RETURN | List of Pdbtosp objects. |
From EMBOSS 2.9.0
AjPPdbtosp ajPdbtospReadNew ( AjPFile inf, const AjPStr entry );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Input file stream |
const AjPStr | entry | Input | Pdb id |
AjPPdbtosp | RETURN | True on success |
From EMBOSS 2.9.0
AjPPdbtosp ajPdbtospReadCNew ( AjPFile inf, const char* entry );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Input file stream |
const char* | entry | Input | Pdb id |
AjPPdbtosp | RETURN | True on success |
From EMBOSS 2.9.0
AjPList ajPdbtospReadAllNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Input file stream |
AjPList | RETURN | List of Pdbtosp objects. |
From EMBOSS 2.9.0
AjPCmap ajCmapReadINew ( AjPFile inf, ajint chn, ajint mod );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Input file stream |
ajint | chn | Input | Chain number |
ajint | mod | Input | Model number |
AjPCmap | RETURN | Pointer to new Cmap object. |
From EMBOSS 2.9.0
AjPCmap ajCmapReadCNew ( AjPFile inf, char chn, ajint mod );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Input file stream |
char | chn | Input | Chain number |
ajint | mod | Input | Model number |
AjPCmap | RETURN | Pointer to new Cmap object. |
From EMBOSS 2.9.0
AjPList ajCmapReadAllNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Input file stream |
AjPList | RETURN | List of Cmap objects. |
From EMBOSS 3.0.0
AjPCmap ajCmapReadNew ( AjPFile inf, ajint mode, ajint chn, ajint mod );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Input file stream. |
ajint | mode | Input | Mode, either CMAP_MODE_I (treat chn arg as an integer) or CMAP_MODE_C (treat chn arg as a character). |
ajint | chn | Input | Chain identifier / number. |
ajint | mod | Input | Model number. |
AjPCmap | RETURN | True on success (an object read) |
From EMBOSS 2.9.0
AjPVdwall ajVdwallReadNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Input file stream |
AjPVdwall | RETURN | Pointer to Vdwall object. |
From EMBOSS 2.9.0
AjPHet ajHetReadNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Pointer to Het file |
AjPHet | RETURN | Het object. |
From EMBOSS 2.9.0
AjPHet ajHetReadRawNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Pointer to dictionary |
AjPHet | RETURN | True on success |
From EMBOSS 2.9.0
AjPPdb ajPdbReadFirstModelNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Pointer to clean coordinate file |
AjPPdb | RETURN | Pointer to Pdb object. |
From EMBOSS 2.9.0
AjPPdb ajPdbReadAllModelsNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Pointer to clean coordinate file |
AjPPdb | RETURN | Pointer to Pdb object. |
From EMBOSS 3.0.0
AjPPdb ajPdbReadNew ( AjPFile inf, ajint mode );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Pointer to clean coordinate file |
ajint | mode | Input | Mode. 0==Read first model only. 1==Read all models. |
AjPPdb | RETURN | Pointer to Pdb object. |
From EMBOSS 2.9.0
AjPPdb ajPdbReadoldNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Pointer to clean coordinate file |
AjPPdb | RETURN | Pointer to Pdb object. |
From EMBOSS 3.0.0
AjPPdb ajPdbReadoldFirstModelNew ( AjPFile inf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | inf | Modify | Pointer to clean coordinate file |
AjPPdb | RETURN | Pointer to Pdb object. |
From EMBOSS 3.0.0
AjPAtom ajAtomNew ( void );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPAtom | RETURN | Pointer to an atom object |
From EMBOSS 1.8.0
AjPResidue ajResidueNew ( void );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPResidue | RETURN | Pointer to a Residue object |
From EMBOSS 3.0.0
AjPChain ajChainNew ( void );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPChain | RETURN | Pointer to a chain object |
From EMBOSS 1.8.0
AjPPdb ajPdbNew ( ajint n );
Type | Name | Read/Write | Description |
---|---|---|---|
ajint | n | Input | Number of chains in this pdb file |
AjPPdb | RETURN | Pointer to a pdb object |
From EMBOSS 1.8.0
AjPHetent ajHetentNew ( void );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPHetent | RETURN | Pointer to a Hetent object |
From EMBOSS 2.9.0
AjPHet ajHetNew ( ajint n );
Type | Name | Read/Write | Description |
---|---|---|---|
ajint | n | Input | Number of entries in dictionary. |
AjPHet | RETURN | Pointer to a Het object |
From EMBOSS 2.9.0
AjPVdwall ajVdwallNew ( ajint n );
Type | Name | Read/Write | Description |
---|---|---|---|
ajint | n | Input | Number of residues |
AjPVdwall | RETURN | Pointer to a Vdwall object |
From EMBOSS 2.9.0
AjPVdwres ajVdwresNew ( ajint n );
Type | Name | Read/Write | Description |
---|---|---|---|
ajint | n | Input | Number of atoms |
AjPVdwres | RETURN | Pointer to a Vdwres object |
From EMBOSS 2.9.0
AjPCmap ajCmapNew ( ajint n );
Type | Name | Read/Write | Description |
---|---|---|---|
ajint | n | Input | Dimension of contact map |
AjPCmap | RETURN | Pointer to a Cmap object |
From EMBOSS 2.9.0
AjPPdbtosp ajPdbtospNew ( ajint n );
Type | Name | Read/Write | Description |
---|---|---|---|
ajint | n | Input | Number of entries |
AjPPdbtosp | RETURN | Pointer to a Pdbtosp object |
From EMBOSS 2.9.0
Functions:
ajAtomDel | Destructor for atom object. |
ajResidueDel | Destructor for residue object. |
ajChainDel | Destructor for chain object. |
ajPdbDel | Destructor for pdb object. |
ajHetentDel | Destructor for Hetent object. |
ajHetDel | Destructor for Het object. |
ajVdwallDel | Destructor for Vdwall object. |
ajVdwresDel | Destructor for Vdwres object. |
ajCmapDel | Destructor for Cmap object. |
ajPdbtospDel | Destructor for Pdbtosp object. |
void ajAtomDel ( AjPAtom* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPAtom* | ptr | Delete | Atom object pointer |
void | RETURN |
From EMBOSS 1.8.0
void ajResidueDel ( AjPResidue* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPResidue* | ptr | Delete | Residue object pointer |
void | RETURN |
From EMBOSS 3.0.0
void ajChainDel ( AjPChain* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPChain* | ptr | Delete | Chain object pointer |
void | RETURN |
From EMBOSS 1.8.0
void ajPdbDel ( AjPPdb* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPPdb* | ptr | Delete | Pdb object pointer |
void | RETURN |
From EMBOSS 1.8.0
void ajHetentDel ( AjPHetent* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPHetent* | ptr | Delete | Hetent object pointer |
void | RETURN |
From EMBOSS 2.9.0
void ajHetDel ( AjPHet* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPHet* | ptr | Delete | Het object pointer |
void | RETURN |
From EMBOSS 2.9.0
void ajVdwallDel ( AjPVdwall* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPVdwall* | ptr | Delete | Vdwall object pointer |
void | RETURN |
From EMBOSS 2.9.0
void ajVdwresDel ( AjPVdwres* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPVdwres* | ptr | Delete | Vdwres object pointer |
void | RETURN |
From EMBOSS 2.9.0
void ajCmapDel ( AjPCmap* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPCmap* | ptr | Delete | Cmap object pointer |
void | RETURN |
From EMBOSS 2.9.0
void ajPdbtospDel ( AjPPdbtosp* ptr );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPPdbtosp* | ptr | Delete | Pdbtosp object pointer |
void | RETURN |
From EMBOSS 2.9.0
Functions:
ajAtomCopy | Copies the data from an Atom object to an Atom object; the new object is created if needed. |
ajResidueCopy | Copies the data from a Residue object to an Residue object; the new object is created if needed. |
ajAtomListCopy | Read a list of Atom structures and writes a copy of the list. The data are copied and the list is created if necessary. |
ajResidueListCopy | Read a list of Residue structures and writes a copy of the list. The data are copied and the list is created if necessary. |
ajPdbCopy | Copies data from one Pdb object to another; the new object is always created. |
AjBool ajAtomCopy ( AjPAtom* to, const AjPAtom from );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPAtom* | to | Output | Atom object pointer |
const AjPAtom | from | Input | Atom object pointer |
AjBool | RETURN | True on success |
From EMBOSS 2.9.0
AjBool ajResidueCopy ( AjPResidue* to, const AjPResidue from );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPResidue* | to | Output | Residue object pointer |
const AjPResidue | from | Input | Residue object pointer |
AjBool | RETURN | True on success |
From EMBOSS 3.0.0
AjBool ajAtomListCopy ( AjPList* to, const AjPList from );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPList* | to | Output | List of Atom objects to write |
const AjPList | from | Input | List of Atom objects to read |
AjBool | RETURN | True if list was copied ok. |
From EMBOSS 2.9.0
AjBool ajResidueListCopy ( AjPList* to, const AjPList from );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPList* | to | Output | List of Residue objects to write |
const AjPList | from | Input | List of Residue objects to read |
AjBool | RETURN | True if list was copied ok. |
From EMBOSS 3.0.0
AjBool ajPdbCopy ( AjPPdb* to, const AjPPdb from );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPPdb* | to | Output | Pdb object pointer |
const AjPPdb | from | Input | Pdb object pointer |
AjBool | RETURN | True on success |
From EMBOSS 2.9.0
Functions:
ajResidueSSEnv | Assigns secondary structure environment of a residue |
ajResidueEnv1 | Assigns environment based only of side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv2 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv3 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv4 | Assigns environment based only of side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv5 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv6 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv7 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv8 | Assigns environment based only of side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv9 | Assigns environment based only of side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv10 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv11 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv12 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv13 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv14 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv15 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajResidueEnv16 | Assigns environment based on side chain accessibility and secondary structure. Assigns environment of "*" as default. |
ajPdbGetEStrideType | Reads a Pdb object and writes a string with the secondary structure. The string that is written is the same length as the full-length chain (regardless of whether coordinates for a residue were available or not) therefore it can be indexed into using residue numbers. The string is allocated if necessary. If secondary structure assignment was not available for a residue a '.' is given in the string. |
AjBool ajResidueSSEnv ( const AjPResidue res, char* SEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char* | SEnv | Output | Character for the Secondary structure environment |
AjPFile | flog | Output | Log file |
AjBool | RETURN | ajTrue on success |
From EMBOSS 3.0.0
ajint ajResidueEnv1 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv2 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv3 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv4 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv5 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv6 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv7 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv8 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv9 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv10 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv11 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv12 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv13 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv14 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv15 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajResidueEnv16 ( const AjPResidue res, char SEnv, AjPStr* OEnv, AjPFile flog );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPResidue | res | Input | Residue object |
char | SEnv | Input | Secondary structure environment code |
AjPStr* | OEnv | Output | Character for the overall environment class |
AjPFile | flog | Output | Log file |
ajint | RETURN | Number of environments |
From EMBOSS 3.0.0
ajint ajPdbGetEStrideType ( const AjPPdb obj, ajint chn, AjPStr* EStrideType );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPPdb | obj | Input | Pdb object |
ajint | chn | Input | Chain number |
AjPStr* | EStrideType | Output | String to hold secondary structure |
ajint | RETURN | Length (residues) of array that was written or -1 (for an error) |
From EMBOSS 2.9.0
Functions:
ajPdbChnidToNum | Finds the chain number for a given chain identifier in a pdb structure |
ajPdbtospArrFindPdbid | Performs a binary search for a PDB code over an array of Pdbtosp structures (which of course must first have been sorted). This is a case-insensitive search. |
AjBool ajPdbChnidToNum ( char id, const AjPPdb pdb, ajint* chn );
Type | Name | Read/Write | Description |
---|---|---|---|
char | id | Input | Chain identifier |
const AjPPdb | pdb | Input | Pdb object |
ajint* | chn | Output | Chain number |
AjBool | RETURN | True on success |
From EMBOSS 2.9.0
ajint ajPdbtospArrFindPdbid ( AjPPdbtosp const* arr, ajint siz, const AjPStr id );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPPdbtosp const* | arr | Input | Array of AjOPdbtosp objects |
ajint | siz | Input | Size of array |
const AjPStr | id | Input | Search term |
ajint | RETURN | Index of first Pdbtosp object found with an PDB code matching id, or -1 if id is not found. |
From EMBOSS 2.9.0
Functions:
ajPdbWriteAll | Writes a clean coordinate file for a protein. |
ajPdbWriteSegment | Writes a clean coordinate file for a segment, e.g. a domain. The segment corresponds to a sequence that is passed to the function. In the clean coordinate file, the coordinates are presented as belonging to a single chain. Coordinates for heterogens are NOT written to file. |
ajHetWrite | Writes the contents of a Het object to file. |
ajPdbtospWrite | Reads a list of Pdbtosp objects, e.g. taken from the swissprot:pdb equivalence table available at URL: (1) http://www.expasy.ch/cgi-bin/lists?pdbtosp.txt) and writes the list out to file in embl-like format (see documentation for DOMAINATRIX "pdbtosp" application). |
ajCmapWrite | Write a Cmap object to file in CON format (see documentation for DOMAINATRIX "contacts" application). |
ajPdbExit | Cleanup of Pdb function internals. |
AjBool ajPdbWriteAll ( AjPFile outf, const AjPPdb obj );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | outf | Output | Output file stream |
const AjPPdb | obj | Input | Pdb object |
AjBool | RETURN | True on success |
From EMBOSS 1.9.0
AjBool ajPdbWriteSegment ( AjPFile outf, const AjPPdb pdb, const AjPStr segment, char chnid, const AjPStr domain, AjPFile errf );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | outf | Output | Output file stream |
const AjPPdb | pdb | Input | Pdb object |
const AjPStr | segment | Input | Sequence of segment to print out. |
char | chnid | Input | Chain id of segment |
const AjPStr | domain | Input | Domain code for segment |
AjPFile | errf | Output | Output file stream for error messages |
AjBool | RETURN | True on success |
From EMBOSS 3.0.0
AjBool ajHetWrite ( AjPFile outf, const AjPHet obj, AjBool dogrep );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | outf | Output | Output file |
const AjPHet | obj | Input | Het object |
AjBool | dogrep | Input | Flag (True if we are to write 'cnt' element of the Het object to file). |
AjBool | RETURN | True on success |
From EMBOSS 2.9.0
AjBool ajPdbtospWrite ( AjPFile outf, const AjPList list );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | outf | Output | Output file |
const AjPList | list | Input | List of Pdbtosp objects |
AjBool | RETURN | True of file was written ok. |
From EMBOSS 2.9.0
AjBool ajCmapWrite ( AjPFile outf, const AjPCmap cmap );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPFile | outf | Modify | Output file stream. |
const AjPCmap | cmap | Input | Cmap object pointer. |
AjBool | RETURN | True on success (object was written successfully) |
From EMBOSS 3.0.0
void ajPdbExit ( void );
Type | Name | Read/Write | Description |
---|---|---|---|
void | RETURN |
From EMBOSS 6.1.0