]>
diplodocus.org Git - nmh/blob - sbr/seq_print.c
1 /* seq_print.c -- Routines to print sequence information.
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
11 * Print all the sequences in a folder
14 seq_printall (struct msgs
*mp
)
19 for (i
= 0; i
< svector_size (mp
->msgattrs
); i
++) {
20 list
= seq_list (mp
, svector_at (mp
->msgattrs
, i
));
21 printf ("%s%s: %s\n", svector_at (mp
->msgattrs
, i
),
22 is_seq_private (mp
, i
) ? " (private)" : "", FENDNULL(list
));
28 * Print a particular sequence in a folder
31 seq_print (struct msgs
*mp
, char *seqname
)
36 /* get the index of sequence */
37 i
= seq_getnum (mp
, seqname
);
39 /* get sequence information */
40 list
= seq_list (mp
, seqname
);
42 printf ("%s%s: %s\n", seqname
,
43 (i
== -1) ? "" : is_seq_private(mp
, i
) ? " (private)" : "", FENDNULL(list
));