Hi,
Thank you so much for maintenance and update of this fantastic tool and really appreciate the update to allow selection of grch38 sum stats for snp2gene!
I'm running into issue and not sure why it's still failing. I've read through the common issues and solutions and can't seem to make sense of this one. Gone through many of previous ERROR:001 problems.
The relevant job IDs are: 748899 and 748904.
The input files are loaded into R and columns filtered to reduce file size and reordered to match required grch38 column instructions.
For job 748899 I had forgotten to set quote = F when using write.table in R. When I set quote = F for next job it seemed to have issue recognizing the header name separation (my best guess from the log files).
After writing tzv file in R I'm just using gzip via terminal to compress file before uploading to run.
just normal command: gzip file_name.tsv
Is there something else that I'm missing during the file writing coming out of R that's causing issue?
Also just wanted to check (since I haven't been able to get passed column name recognition issues) but when running in grch38 mode is it allowed to have a 7th column specifying total N/per SNP to be specified in Sample (N) parameter section? Or will that extra column cause error?
Thanks very much!!
Sam
Full R code being run:
```
library(tidyverse)
library(data.table)
bellenguez_prev <- fread("~/Dropbox/GWAS/GWAS Summary Stats/Bellenguez_filtered.tsv.gz", data.table = F)
bellenguez_reorder <- bellenguez_prev %>%
select(chromosome, base_pair_location, effect_allele, other_allele, beta, p_value, n_total)
write.table(bellenguez_reorder, file = "~/Downloads/bellenguez_grch38_reordered.tsv", quote = FALSE)
```