From 82d5e21471fa7b5768bc74e1ee5a4e59093d1d19 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Wed, 25 Aug 2010 12:55:58 +0000 Subject: [PATCH] Add sequence length in database list output (option -A) git-svn-id: https://www.grenoble.prabi.fr/svn/LECASofts/ecoPrimers/trunk@269 60f365c0-8329-0410-b2a4-ec073aeeaa1d --- src/ecoprimer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ecoprimer.c b/src/ecoprimer.c index 5715ad8..ae3ee15 100644 --- a/src/ecoprimer.c +++ b/src/ecoprimer.c @@ -500,7 +500,7 @@ static void printAC(pecodnadb_t seqdb,uint32_t seqdbsize) uint32_t i; for (i=0; i< seqdbsize;i++) - printf("%15s : %s\n",seqdb[i]->AC,seqdb[i]->DE); + printf("%15s (%8dbp): %s\n",seqdb[i]->AC,seqdb[i]->SQ_length,seqdb[i]->DE); } int main(int argc, char **argv)