Skip to content

Commit 682c93f

Browse files
committed
updated cabal file, updated to pedantic compilation
of latest GHC
1 parent 39b8c0c commit 682c93f

4 files changed

Lines changed: 8 additions & 5 deletions

File tree

Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Changelog
22

3+
- V 1.5.3.1: updated to latest GHC pedantic compilation
34
- V 1.5.3: Upgraded to sequence-formats 1.7.0 introducing an option for plink popName encoding, and improved pileup-Parsing to allow for skip-reference characters
45
- V 1.5.2: Fixed a bug with --samplePopName having to be entered after -p or -e. Fixed a bug in the sequence-formats dependency.
56
- V 1.5.1: Added automatic building

sequenceTools.cabal

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sequenceTools
2-
version: 1.5.3
2+
version: 1.5.3.1
33
synopsis: A package with tools for processing DNA sequencing data
44
description: The tools in this package process sequencing Data, in particular from ancient DNA sequencing libraries. Key tool in this package is pileupCaller, a tool to randomly sample genotypes from sequencing data.
55
license: GPL-3
@@ -9,6 +9,8 @@ maintainer: stephan.schiffels@mac.com
99
category: Bioinformatics
1010
build-type: Simple
1111
cabal-version: >=1.10
12+
Homepage: https://github.com/stschiff/sequenceTools
13+
Bug-Reports: https://github.com/stschiff/sequenceTools/issues
1214
extra-source-files: README.md,
1315
Changelog.md
1416

src-executables/pileupCaller.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,9 @@ outputEigenStratOrPlink outPrefix popName maybePlinkPopMode freqSumProducer = do
323323
RandomCalling -> True
324324
MajorityCalling _ -> True
325325
RandomDiploidCalling -> False
326-
let [snpOut, indOut, genoOut] = case maybePlinkPopMode of
327-
Just _ -> map (outPrefix <>) [".bim", ".fam", ".bed"]
328-
Nothing -> map (outPrefix <>) [".snp", ".ind", ".geno"]
326+
let (snpOut, indOut, genoOut) = case maybePlinkPopMode of
327+
Just _ -> (outPrefix <> ".bim", outPrefix <> ".fam", outPrefix <> ".bed")
328+
Nothing -> (outPrefix <> ".snp", outPrefix <> ".ind", outPrefix <> ".geno")
329329
let indEntries = [EigenstratIndEntry n Unknown popName | n <- sampleNames]
330330
let writeFunc = case maybePlinkPopMode of
331331
Nothing -> (\g s i -> writeEigenstrat g s i indEntries)

stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: lts-18.28
1+
resolver: lts-20.17
22
packages:
33
- '.'
44
extra-deps:

0 commit comments

Comments
 (0)