Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
saulpierotti committed Dec 10, 2024
1 parent 03dfa9e commit e603df1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
16 changes: 5 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
# nf-core/stitchimpute: Changelog
# birneylab/flexlmm: Changelog

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.0dev - [July 14th 2023]
## v2.0.0 - [December 10th 2024]

Initial release of birneylab/stitchimpute, created with the [nf-core](https://nf-co.re/) template and stripped of the references to it being an official nf-core pipeline.

### `Added`

### `Fixed`

### `Dependencies`

### `Deprecated`
Major change and simplification in workflow logic with the aim of facilitating future integration of an eQTL branch.
Change of the permutation approach to be performed on the residuals instead than on the genotypes.
Deprecation of the `permute_by` parameter as grouped permutation are not possible on the low-dimensional projection of the residuals.
2 changes: 1 addition & 1 deletion modules/local/r/aireml.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ process AIREML {
y <- y[!is.na(y)]
samples <- intersect(samples_K, names(y))
samples <- intersect(intersect(samples_K, names(y)), rownames(X))
X <- X[match(samples, rownames(X)), , drop = FALSE]
y <- y[match(samples, names(y))]
K <- K[match(samples, rownames(K)), match(samples, colnames(K))]
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ manifest {
description = "Flexible linear mixed model framework for Genome Wide Association Studies"
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '1.0.6'
version = '2.0.0'
doi = ''
}

Expand Down

0 comments on commit e603df1

Please sign in to comment.