git-svn-id: https://www.grenoble.prabi.fr/svn/LECASofts/ecoPCR/branches/refactoring@60 60f365c0-8329-0410-b2a4-ec073aeeaa1d
This commit is contained in:
@ -162,7 +162,7 @@ FILE *open_seqfile(const char *prefix,int32_t index)
|
|||||||
prefix,
|
prefix,
|
||||||
index);
|
index);
|
||||||
|
|
||||||
fprintf(stderr,"Coucou %s\n",filename_buffer);
|
fprintf(stderr,"# Coucou %s\n",filename_buffer);
|
||||||
|
|
||||||
|
|
||||||
if (filename_length >= 1024)
|
if (filename_length >= 1024)
|
||||||
@ -173,7 +173,7 @@ FILE *open_seqfile(const char *prefix,int32_t index)
|
|||||||
input=open_ecorecorddb(filename_buffer,&seqcount,0);
|
input=open_ecorecorddb(filename_buffer,&seqcount,0);
|
||||||
|
|
||||||
if (input)
|
if (input)
|
||||||
fprintf(stderr,"Reading file %s containing %d sequences...\n",
|
fprintf(stderr,"# Reading file %s containing %d sequences...\n",
|
||||||
filename_buffer,
|
filename_buffer,
|
||||||
seqcount);
|
seqcount);
|
||||||
|
|
||||||
|
@ -195,9 +195,11 @@ ecotx_t *eco_findtaxonbytaxid(ecotaxonomy_t *taxonomy,
|
|||||||
i=0;
|
i=0;
|
||||||
i < taxoncount;
|
i < taxoncount;
|
||||||
i++,
|
i++,
|
||||||
current_taxon++)
|
current_taxon++){
|
||||||
if (current_taxon->taxid==taxid)
|
if (current_taxon->taxid==taxid){
|
||||||
return current_taxon;
|
return current_taxon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return (ecotx_t*)NULL;
|
return (ecotx_t*)NULL;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user