Minor fixes
This commit is contained in:
@ -573,7 +573,7 @@ int obi_ecotag(const char* dms_name,
|
||||
best_match = obi_taxo_get_taxon_with_taxid(taxonomy, taxid_best_match);
|
||||
if (best_match == NULL)
|
||||
{
|
||||
obidebug(1, "\nError getting a taxon from a taxid when doing taxonomic assignment");
|
||||
obidebug(1, "\nError getting a taxon from a taxid (%d) when doing taxonomic assignment", taxid_best_match);
|
||||
return -1;
|
||||
}
|
||||
if (j>0)
|
||||
|
@ -106,7 +106,7 @@ typedef struct OBIDMS_column_header {
|
||||
* and '\0\0' as terminal flag.
|
||||
* (default are the indices: "0\01\02\0...\0n\0\0").
|
||||
*/
|
||||
int64_t* elements_names_idx; /**< Pointer in mem_arnea on the index for the start of each element name in elements_names.
|
||||
int64_t* elements_names_idx; /**< Pointer in mem_arena on the index for the start of each element name in elements_names.
|
||||
*/
|
||||
int64_t* sorted_elements_idx; /**< Index for the sorted element names in elements_names_idx.
|
||||
*/
|
||||
|
@ -57,6 +57,9 @@
|
||||
*/
|
||||
#define TAXID_COLUMN "TAXID" /**< The name of the column containing the taxids. TODO subtype of INT column?
|
||||
*/
|
||||
#define MERGED_TAXID_COLUMN "merged_TAXID" /**< The name of the column containing the merged taxids information.
|
||||
*/ // TODO maybe mix of lower and uppercase == bad
|
||||
|
||||
#define ID_PREFIX "seq" /**< The default prefix of sequence identifiers in automatic ID columns.
|
||||
*/
|
||||
#define PREDICATE_KEY "predicates" /**< The key used in the json-formatted view comments to store predicates.
|
||||
|
Reference in New Issue
Block a user