From c0626965d83a421b970db6e6e1d6abb9989c8f8c Mon Sep 17 00:00:00 2001 From: martinahansen Date: Fri, 18 Sep 2009 06:12:45 +0000 Subject: [PATCH] fixed issue 18 git-svn-id: http://biopieces.googlecode.com/svn/trunk@671 74ccb610-7750-0410-82ae-013aeee3265d --- code_c/Maasha/src/bed2tag_contigs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code_c/Maasha/src/bed2tag_contigs.c b/code_c/Maasha/src/bed2tag_contigs.c index 38fd25c..b1bff76 100644 --- a/code_c/Maasha/src/bed2tag_contigs.c +++ b/code_c/Maasha/src/bed2tag_contigs.c @@ -101,7 +101,7 @@ int main( int argc, char *argv[] ) score = ( uint ) get_score( entry->q_id ); - if ( score > entry->score && entry->score > 0 ) { + if ( score >= entry->score && entry->score > 0 ) { barray_interval_inc( ba, entry->chr_beg, entry->chr_end - 1, ( uint ) ( score / entry->score ) ); } } -- 2.39.5