void embDataListDel (
AjPList* data
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPList* | data | Output | is the list of data tables to delete |
| void | RETURN |
From EMBOSS 1.0.0
void embDataListRead (
AjPList data,
AjPFile pfile
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPList | data | Output | is the list of data tables. |
| AjPFile | pfile | Modify | pointer to the data file |
| void | RETURN |
From EMBOSS 2.9.0
void embDataListGetTables (
const AjPList fullList,
AjPList returnList,
ajuint required
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPList | fullList | Input | The list containing all the tables of data |
| AjPList | returnList | Output | The new list containing just the tables requested |
| ajuint | required | Input | used to request tables. A value of 1 requests the first table, a value of 16 requests the fifth table, a value of 14 returns the second third and fourth tables in the original list. |
| void | RETURN |
From EMBOSS 1.0.0
AjPTable embDataListGetTable (
const AjPList fullList,
ajuint required
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPList | fullList | Input | The list containing all the tables of data |
| ajuint | required | Input | used to request a table. A value of 1 requests the first table, a value of 16 requests the fifth table, a value of 14 returns the second table in the original list. |
| AjPTable | RETURN | the data table. Key and value are stored as AjPStrs |
From EMBOSS 1.0.0