Skip to content

Commit

Permalink
fix: specific genome versions
Browse files Browse the repository at this point in the history
  • Loading branch information
matq007 committed Jul 3, 2023
1 parent bb42e09 commit bb0feab
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Next, you have to generate genome references to incorporate ERCC spike-ins. Refe
```bash
nextflow run nf-core/marsseq \
-profile <docker/singularity/.../institute> \
--genome <mm10,mm9,GRCh38> \
--genome <mm10,mm9,GRCh38_v43> \
--build_references \
--input samplsheet.csv \
--outdir <OUTDIR>
Expand All @@ -47,7 +47,7 @@ Now, you can run the pipeline using:
```bash
nextflow run nf-core/marsseq \
-profile <docker/singularity/.../institute> \
--genome <mm10,mm9,GRCh38> \
--genome <mm10,mm9,GRCh38_v43> \
--input samplesheet.csv \
--outdir <OUTDIR>
```
Expand Down
20 changes: 11 additions & 9 deletions conf/genomes.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ params {
// GENCODE references (https://www.gencodegenes.org/)
genomes {
'mm10_v32' {
bowtie2 = "${params.genomes_base}/mm10/bowtie2/"
fasta = "${params.genomes_base}/mm10/GRCm39.fa"
bowtie2 = "${params.genomes_base}/mm10_v32/bowtie2/"
fasta = "${params.genomes_base}/mm10_v32/GRCm39.fa"
fasta_url = "http://ftp.ebi.ac.uk/pub/databases/gencode/Gencode_mouse/release_M32/GRCm39.primary_assembly.genome.fa.gz"
gtf = "${params.genomes_base}/mm10/GRCm39.gtf"
gtf = "${params.genomes_base}/mm10_v32/GRCm39.gtf"
gtf_url = "http://ftp.ebi.ac.uk/pub/databases/gencode/Gencode_mouse/release_M32/gencode.vM32.annotation.gtf.gz"
star = "${params.genomes_base}/mm10/star/"
star = "${params.genomes_base}/mm10_v32/star/"
}
'mm10' {
bowtie2 = "${params.genomes_base}/mm10/bowtie2/"
Expand All @@ -36,11 +36,13 @@ params {
gtf_url = "https://ftp.ebi.ac.uk/pub/databases/gencode/Gencode_mouse/release_M1/gencode.vM1.annotation.gtf.gz"
star = "${params.genomes_base}/mm9/star/"
}
'GRCh38' {
fasta = "${params.genomes_base}/mm10/GRCh38.fa"
gtf = "${params.genomes_base}/mm10/GRCh38.gtf"
bowtie2 = "${params.genomes_base}/mm10/Bowtie2Index/"
star = "${params.genomes_base}/mm10/STARIndex/"
'GRCh38_v43' {
bowtie2 = "${params.genomes_base}/GRCh38_v43/bowtie2/"
fasta = "${params.genomes_base}/GRCh38_v43/GRCh38.fa"
fasta_url = "http://ftp.ebi.ac.uk/pub/databases/gencode/Gencode_human/release_43/GRCh38.primary_assembly.genome.fa.gz"
gtf = "${params.genomes_base}/GRCh38_v43/GRCh38.gtf"
gtf_url = "http://ftp.ebi.ac.uk/pub/databases/gencode/Gencode_human/release_43/gencode.v43.annotation.gtf.gz"
star = "${params.genomes_base}/GRCh38_v43/star/"
}
}
}
2 changes: 1 addition & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"description": "Name of Genomes reference.",
"default": "mm10",
"fa_icon": "fas fa-book",
"help_text": "Currently supported mouse: `mm9`, `mm10` and human `GRCh38`. The references are downloaded from [GENCODE](https://www.gencodegenes.org) database."
"help_text": "Currently supported mouse: `mm9`, `mm10` and human `GRCh38_v43`. The references are downloaded from [GENCODE](https://www.gencodegenes.org) database."
},
"fasta": {
"type": "string",
Expand Down

0 comments on commit bb0feab

Please sign in to comment.