Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release PR v1.8.2 #203

Merged
merged 6 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
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.8.2 - Outstanding Oostkamp - [September 30 2024]

## Fixes

1. Fixed some issues where indices were not created
2. Updated the docs

## v1.8.1 - Open Oostkamp - [September 25 2024]

### Fixes
Expand Down
55 changes: 27 additions & 28 deletions docs/parameters.md

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ You will need to create a samplesheet with information with the samples you woul
--input '[path to samplesheet file]'
```

### Watch for files in a directory

When the `--watchdir` parameter has been given, the pipeline will automatically check for all files in the samplesheet that have the `watch:` prefix in the given directory. An example for watching CRAM files:

```csv title="samplesheet.csv"
sample,cram,crai
SAMPLE_1,watch:INPUT.cram,watch:INPUT.cram.crai
```

The files `INPUT.cram` and `INPUT.cram.crai` will now watched for recursively in the watch directory.

### Example of the samplesheet

Below is an example of how the samplesheet could look like in the three formats.
Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"bcftools/concat": {
"branch": "master",
"git_sha": "cdf83b18471db290a28fe98c2a0852cb05864890",
"git_sha": "d1e0ec7670fa77905a378627232566ce54c3c26d",
"installed_by": ["vcf_annotate_ensemblvep_snpeff"]
},
"bcftools/filter": {
Expand Down
16 changes: 10 additions & 6 deletions modules/nf-core/bcftools/concat/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

90 changes: 57 additions & 33 deletions modules/nf-core/bcftools/concat/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions modules/nf-core/bcftools/concat/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading