Skip to content

Commit

Permalink
adjusting adapter plot to reflect changes in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermesena1 committed Nov 26, 2019
1 parent e1271c9 commit d0f7a6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1770,15 +1770,15 @@ ModuleAdapterContent::make_html_data() {

// X values : read position
data << "x : [";
for (size_t j = 0; j < num_bases; ++j) {
for (size_t j = 0; j < adapter_pos_pct[0].size(); ++j) {
data << j+1;
if (j < num_bases - 1) data << ",";
}
data << "]";

// Y values : cumulative adapter frequency
data << ", y : [";
for (size_t j = 0; j < num_bases; ++j) {
for (size_t j = 0; j < adapter_pos_pct[0].size(); ++j) {
data << adapter_pos_pct[i][j];
if (i < num_bases - 1)
data << ",";
Expand Down

0 comments on commit d0f7a6e

Please sign in to comment.