Skip to content

Commit

Permalink
Merge pull request #11 from SBU-BMI/develop
Browse files Browse the repository at this point in the history
Fixed EOL character detection.
  • Loading branch information
jbalsamo authored Apr 16, 2021
2 parents aff4ff3 + 040d2ff commit d8a6240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convert_heatmaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ url = clio.host;
const fileTemps = {};
var manifest = [];
const mfData = []
manifest = fs.readFileSync(inputFolder + '/' + clio.manifest).toString().split('\r\n');
manifest = fs.readFileSync(inputFolder + '/' + clio.manifest).toString().split(/\r\n|\n/);

console.log('Reading manifest file.');

Expand Down

0 comments on commit d8a6240

Please sign in to comment.