Skip to content

Commit

Permalink
unified CLI documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nevrome committed Oct 25, 2024
1 parent 7f744ad commit 6d6e8f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Poseidon/CLI/OptparseApplicativeParsers.hs
Original file line number Diff line number Diff line change
Expand Up @@ -480,14 +480,14 @@ parseInGenoSep = parseEigenstrat <|> parsePlink <|> parseVCF
parseEigenstrat = GenotypeEigenstrat <$>
parseFileWithEndings "Eigenstrat genotype matrix, optionally gzipped" "genoFile" [".geno", ".geno.gz"] <*>
pure Nothing <*>
parseFileWithEndings "Eigenstrat snp positions file" "snpFile, optionally gzipped" [".snp", ".snp.gz"] <*>
parseFileWithEndings "Eigenstrat snp positions file, optionally gzipped" "snpFile" [".snp", ".snp.gz"] <*>
pure Nothing <*>
parseFileWithEndings "Eigenstrat individual file" "indFile" [".ind"] <*>
pure Nothing
parsePlink = GenotypeEigenstrat <$>
parseFileWithEndings "Plink genotype matrix, optionally gzipped" "bedFile" [".bed", ".bed.gz"] <*>
pure Nothing <*>
parseFileWithEndings "Plink snp positions file" "bimFile, optionally gzipped" [".bim", ".bim.gz"] <*>
parseFileWithEndings "Plink snp positions file, optionally gzipped" "bimFile" [".bim", ".bim.gz"] <*>
pure Nothing <*>
parseFileWithEndings "Plink individual file" "famFile" [".fam"] <*> pure Nothing
parseVCF = GenotypeVCF <$>
Expand Down

0 comments on commit 6d6e8f3

Please sign in to comment.