Skip to content

Commit

Permalink
Merge pull request #214 from mgalardini/1.3.10
Browse files Browse the repository at this point in the history
Version bump
  • Loading branch information
mgalardini committed Jul 11, 2022
2 parents 90f06df + 1573c4a commit a97322c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# CHANGELOG
v1.3.10 (July 2022)
- Docs: more clarity on effect sizes for LMM
- Bugfix (similarity): make sure the script actually uses all variants
- Bugfix (QQ-plot): avoid axis inversion with newer versions of statsmodels (thanks to Julian Libiseller-Egger)
- Bugfix: use kwargs when invoking functions from scikit-learn
- Bugfix (annotate hits): avoid crashes when full path to reference genomes contains non-ASCII chars
- Bugfix: WG models should not be ran with the `--output-patterns` function
- Bugfix: avoid a crash when saving a WG model with covariates
- Bugfix: add the "lineage" header when running a whole genome model

v1.3.9 (June 2021)
- Bugfix: avoid a crash when providing lineages in whole genome mode

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
# built documents.
#
# The short X.Y version.
version = '1.3.9'
version = '1.3.10'
# The full version, including alpha/beta/rc tags.
release = '1.3.9'
release = '1.3.10'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
16 changes: 8 additions & 8 deletions docs/options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ Usage::
[--min-af MIN_AF] [--max-af MAX_AF] [--max-missing MAX_MISSING]
[--filter-pvalue FILTER_PVALUE] [--lrt-pvalue LRT_PVALUE]
[--cor-filter COR_FILTER] [--covariates COVARIATES]
[--use-covariates [USE_COVARIATES [USE_COVARIATES ...]]]
[--print-samples] [--print-filtered]
[--output-patterns OUTPUT_PATTERNS] [--uncompressed] [--cpu CPU]
[--block_size BLOCK_SIZE] [--version]
[--use-covariates [USE_COVARIATES ...]] [--print-samples]
[--print-filtered] [--output-patterns OUTPUT_PATTERNS]
[--uncompressed] [--cpu CPU] [--block_size BLOCK_SIZE]
[--version]

SEER (doi: 10.1038/ncomms12797), reimplemented in python

Expand Down Expand Up @@ -108,18 +108,18 @@ Usage::
--covariates COVARIATES
User-defined covariates file (tab-delimited, with
header, first column contains sample names)
--use-covariates [USE_COVARIATES [USE_COVARIATES ...]]
--use-covariates [USE_COVARIATES ...]
Covariates to use. Format is "2 3q 4" (q for
quantitative) [Default: load covariates but don't use
them]

Other:
--print-samples Print sample lists [Default: hide samples]
--print-filtered Print filtered variants (i.e. fitting errors)
[Default: hide them]
--print-filtered Print filtered variants (i.e. fitting errors) (does
not apply if --wg is used) [Default: hide them]
--output-patterns OUTPUT_PATTERNS
File to print patterns to, useful for finding pvalue
threshold
threshold (not used with --wg)
--uncompressed Uncompressed kmers file [Default: gzipped]
--cpu CPU Processes [Default: 1]
--block_size BLOCK_SIZE
Expand Down
2 changes: 1 addition & 1 deletion pyseer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

'''Python reimplementation of SEER for bacterial GWAS'''

__version__ = '1.3.10-dev'
__version__ = '1.3.10'

0 comments on commit a97322c

Please sign in to comment.