Skip to content

Commit

Permalink
Merge pull request #232 from jonasscheid/prepare-release
Browse files Browse the repository at this point in the history
Prepare release
  • Loading branch information
christopher-mohr authored Feb 20, 2024
2 parents 14cafe5 + 49f126a commit 72e7e30
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 254 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
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).

## v2.3.0 - Oesterberg - 2024-02-14
## v2.3.0 - Oesterberg - 2024-02-20

### `Changed`

Expand Down
2 changes: 1 addition & 1 deletion assets/schema_input.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"filename": {
"type": "string",
"pattern": "^\\S+\\.(vcf|vcf.gz|tsv|fasta|fa)$",
"errorMessage": "Variants/proteins/peptides for sample must be provided and have one of the following extensions: '.vcf', '.vcf.gz', '.tsv', '.fasta', '.fa'"
"errorMessage": "Variants/proteins/peptides of a sample must be provided and have one of the following extensions: '.vcf', '.vcf.gz', '.tsv', '.fasta', '.fa'"
}
},
"required": ["sample", "alleles", "mhc_class", "filename"]
Expand Down
7 changes: 1 addition & 6 deletions bin/check_requested_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,7 @@ def __main__():
}

# get the alleles
if args.alleles.startswith("http"):
alleles = [Allele(a) for a in urllib.request.urlopen(args.alleles).read().decode("utf-8").splitlines()]
elif args.alleles.endswith(".txt"):
alleles = [Allele(a) for a in open(args.alleles).read().splitlines()]
else:
alleles = [Allele(a) for a in args.alleles.split(";")]
alleles = [Allele(a) for a in args.alleles.split(";")]

peptide_lengths = []
if args.peptides:
Expand Down
5 changes: 2 additions & 3 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ The pipeline currently accepts three different types of input that are genomic v
The supported file formats for genomic variants are `.vcf`, `.vcf.gz` and `tsv`.

> [!IMPORTANT]
> Please note that genomic variants have to be annotated. Currently, we support variants that have been annotated using [SnpEff](http://pcingola.> github.io/SnpEff/).
> Support for [VEP](https://www.ensembl.org/info/docs/tools/vep/index.html) will be available with one of the upcoming versions.
> Please note that genomic variants have to be annotated. Currently, we support variants that have been annotated using [SnpEff](http://pcingola.> github.io/SnpEff/) and [VEP](https://www.ensembl.org/info/docs/tools/vep/index.html).
`tsv` files with genomic variants have to provide the following columns:

Expand All @@ -36,7 +35,7 @@ chr1 12954870 12954870 C T . 0 NORMAL:414,TUMOR:8 . missense_variant 0.5 transcr

```

For genomic variants, reference information from `Ensembl BioMart` is used. The default database version is the most recent `GRCh37` version. If you want to do the predictions based on `GRCh38` as the reference genome, please specify `--genome_reference grch37` in your pipeline call.
For genomic variants, reference information from `Ensembl BioMart` is used. The default database version is the most recent `GRCh37` version. If you want to do the predictions based on `GRCh38` as the reference genome, please specify `--genome_reference grch38` in your pipeline call.

You can also specify valid `Ensembl BioMart` archive version urls as `--genome_reference` value, e.g. [the archive version of December 2021](http://dec2021.archive.ensembl.org/).

Expand Down
2 changes: 0 additions & 2 deletions lib/WorkflowEpitopeprediction.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ class WorkflowEpitopeprediction {
// Uncomment function in methodsDescriptionText to render in MultiQC report
def citation_text = [
"Tools used in the workflow included:",
"FastQC (Andrews 2010),",
"MultiQC (Ewels et al. 2016)",
"."
].join(' ').trim()
Expand All @@ -68,7 +67,6 @@ class WorkflowEpitopeprediction {
// Can use ternary operators to dynamically construct based conditions, e.g. params["run_xyz"] ? "<li>Author (2023) Pub name, Journal, DOI</li>" : "",
// Uncomment function in methodsDescriptionText to render in MultiQC report
def reference_text = [
"<li>Andrews S, (2010) FastQC, URL: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/).</li>",
"<li>Ewels, P., Magnusson, M., Lundin, S., & Käller, M. (2016). MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics , 32(19), 3047–3048. doi: /10.1093/bioinformatics/btw354</li>"
].join(' ').trim()

Expand Down
7 changes: 0 additions & 7 deletions modules/nf-core/fastqc/environment.yml

This file was deleted.

212 changes: 0 additions & 212 deletions modules/nf-core/fastqc/tests/main.nf.test

This file was deleted.

20 changes: 0 additions & 20 deletions modules/nf-core/fastqc/tests/main.nf.test.snap

This file was deleted.

2 changes: 0 additions & 2 deletions modules/nf-core/fastqc/tests/tags.yml

This file was deleted.

0 comments on commit 72e7e30

Please sign in to comment.