Skip to content

Commit

Permalink
Merge pull request #6 from ncbi/develop
Browse files Browse the repository at this point in the history
Update BEDstruct.c
  • Loading branch information
r78v10a07 authored Apr 15, 2019
2 parents c8e43a5 + 55c08da commit bf28071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BEDstruct.c
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ void CalculateFPKM(BAMFILES *bhead, PEAK *head) {
float kilo_length = 0;

while (bcurr != NULL) {
pm = bcurr->read_coverage / 1000000;
pm = (float) bcurr->read_coverage / 1000000;
curr = head;

while (curr != NULL) {
Expand Down Expand Up @@ -651,4 +651,4 @@ void WriteMultiCovsNormalized(BAMFILES *bhead, PEAK *head, int no_of_samples, ch

fclose(handler);

}
}

0 comments on commit bf28071

Please sign in to comment.