0

This is my code thus far, but it keeps saying "...' used in an incorrect context? Any suggestions?

library(qqman)
manhattan(
pvalues_file,
chr = "CHR",
bp = "BP",
p = "P",
snp = "SNP",
col = c("gray10", "gray60"),
chrlabs = NULL,
suggestiveline = -log10(1e-05),
genomewideline = -log10(5e-08),
highlight = NULL,
logp = TRUE,
annotatePval = NULL,
annotateTop = TRUE,
...
)
nick1
  • 1
  • 1
  • 1
    It's easier to help you if you include a simple [reproducible example](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) with sample input that can be used to test and verify possible solutions. – MrFlick Dec 09 '21 at 04:17

1 Answers1

1

You don't need to type .... ... in the function definition just means that there are other arguments that you can chuck in there. If you don't want to, don't.

Daniel V
  • 1,305
  • 7
  • 23