I am trying to parse a variant of this file (instead of using tab as delimiter I am using a file that has comma as delimiter) https://github.com/materechm/Schizophrenia/blob/master/GWAS.txt
This is my code, but I am getting an empty array and no errors
var csv = Papa.parse('GWAS.csv', {
delimiter: ",",
header: true,
comments: false,
complete: function(results) {
console.log(results);
}
});