#include <tagUtils.h> void insert_NEW_tag( GapIO *io, int N, int pos, int length, char *type, char *comment, int sense);
This function adds a new tag to the database. If N is positive, the tag is added to reading number N, otherwise it is added to contig number -N. The reading and contig annotation lists are updated accordingly.
The pos, length, type, comment and sense
arguments specify the position, length, type (a 4 character string), comment
and orientation of the tag to create. comment may be NULL
.
sense should be one of 0 for forward, 1 for reverse and 2 for both.