Skip to content

Commit 6292afc

Browse files
authored
Merge pull request #2 from mortazavilab/devel
add multigenome support
2 parents 53c88e6 + 4694cef commit 6292afc

File tree

5 files changed

+68
-145
lines changed

5 files changed

+68
-145
lines changed

.DS_Store

6 KB
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The current version of Dogme has been tested on SLURM clusters and on Macs with
55

66
| Software | Version |
77
|----------|---------|
8-
| dorado | 0.9.1 |
8+
| dorado | 1.0 |
99
| samtools | 1.15.1 |
1010
| minimap2 | 2.28 |
1111
| mod_kit | 0.4.3 |

dogme.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def getParamOrDefault(param, defaultValue) {
1515
}
1616

1717
// Set the default value at the workflow level
18-
def dogmeVersion = "1.0"
18+
def dogmeVersion = "1.1"
1919
def defaultModDir = "${launchDir}/doradoModels"
2020

2121
workflow {

dogmetest-param.conf

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,17 @@ params {
1616
scriptEnv = "${launchDir}/dogme.profile"
1717

1818
// needs to be modified to match the right genomic reference
19-
genomeRef = '/share/crsp/lab/seyedam/share/bridge_dRNA/kallistoref/GRCm39.primary_assembly.genome.fa'
20-
annotRef = '/share/crsp/lab/seyedam/share/bridge_dRNA/kallistoref/gencode.vM36.annotation.gtf'
19+
// genome_annot_refs = [
20+
//[name: 'genome1', genome: '/path/genome1.fa', annot: '/path/annot1.gtf'],
21+
//[name: 'genome2', genome: '/path/genome2.fa', annot: '/path/annot2.gtf']
22+
//]
23+
genome_annot_refs = [
24+
[name: 'mm39',
25+
genome: '/share/crsp/lab/seyedam/share/bridge_dRNA/kallistoref/GRCm39.primary_assembly.genome.fa',
26+
annot: '/share/crsp/lab/seyedam/share/bridge_dRNA/kallistoref/gencode.vM36.annotation.gtf'
27+
]
28+
]
29+
2130
kallistoIndex = '/share/crsp/lab/seyedam/share/bridge_dRNA/kallistoref/mm39GencM36_k63.idx'
2231
t2g = '/share/crsp/lab/seyedam/share/bridge_dRNA/kallistoref/mm39GencM36_k63.t2g'
2332

0 commit comments

Comments
 (0)