You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+39-16Lines changed: 39 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -5,25 +5,48 @@
5
5
6
6
# Mikado - pick your transcript: a pipeline to determine and select the best RNA-Seq prediction
7
7
8
-
Mikado is a lightweight Python3 pipeline to identify the most useful or “best” set of transcripts from multiple transcript assemblies. Our approach leverages transcript assemblies generated by multiple methods to define expressed loci, assign a representative transcript and return a set of gene models that selects against transcripts that are chimeric, fragmented or with short or disrupted CDS. Loci are first defined based on overlap criteria and each transcript therein is scored based on up to 50 available metrics relating to ORF and cDNA size, relative position of the ORF within the transcript, UTR length and presence of multiple ORFs. Mikado can also utilize blast data to score transcripts based on proteins similarity and to identify and split chimeric transcripts. Optionally, junction confidence data as provided by [Portcullis] can be used to improve the assessment. The best-scoring transcripts are selected as the primary transcripts of their respective gene loci; additionally, Mikado can bring back other valid splice variants that are compatible with the primary isoform.
8
+
Mikado is a lightweight Python3 pipeline to identify the most useful or “best” set of transcripts from multiple transcript assemblies. Our approach leverages transcript assemblies generated by multiple methods to define expressed loci, assign a representative transcript and return a set of gene models that selects against transcripts that are chimeric, fragmented or with short or disrupted CDS. Loci are first defined based on overlap criteria and each transcript therein is scored based on up to 50 available metrics relating to ORF and cDNA size, relative position of the ORF within the transcript, UTR length and presence of multiple ORFs. Mikado can also utilize blast data to score transcripts based on proteins similarity and to identify and split chimeric transcripts. Optionally, junction confidence data as provided by [Portcullis][Portcullis] can be used to improve the assessment. The best-scoring transcripts are selected as the primary transcripts of their respective gene loci; additionally, Mikado can bring back other valid splice variants that are compatible with the primary isoform.
9
9
10
-
Mikado uses GTF or GFF files as mandatory input. Non-mandatory but highly recommended input data can be generated by obtaining a set of reliable splicing junctions with Portcullis_, by locating coding ORFs on the transcripts using either [Transdecoder] or [Prodigal], and by obtaining homology information through either [BLASTX][Blast+] or [DIAMOND].
10
+
Mikado uses GTF or GFF files as mandatory input. Non-mandatory but highly recommended input data can be generated by obtaining a set of reliable splicing junctions with Portcullis_, by locating coding ORFs on the transcripts using either [Transdecoder][Transdecoder] or [Prodigal][Prodigal], and by obtaining homology information through either [BLASTX][Blast+] or [DIAMOND][DIAMOND].
11
11
12
12
Our approach is amenable to include sequences generated by *de novo* Illumina assemblers or reads generated from long read technologies such as Pacbio.
13
13
14
14
Extended documentation is hosted on ReadTheDocs: http://mikado.readthedocs.org/
15
15
16
16
## Installation
17
17
18
-
Mikado can be installed from PyPI with pip:
18
+
Using mamba
19
19
20
-
```pip3 install mikado```
20
+
download mamba using pip
21
+
22
+
```bash
23
+
pip install mamba=0.27.0
24
+
```
25
+
26
+
Create a mamba environment using the environment.yml file
27
+
28
+
```bash
29
+
mamba env create -f environment.yml
30
+
conda activate mikado2
31
+
```
32
+
33
+
Check and run mikado
34
+
35
+
```bash
36
+
mikado --help
37
+
```
38
+
39
+
40
+
41
+
Mikado can also be be installed from PyPI with pip (**deprecated**):
42
+
43
+
``pip3 install mikado``
21
44
22
45
Alternatively, you can clone the repository from source and install with:
23
46
24
47
pip wheel -w dist .
25
-
pip install dist/*whl
26
-
48
+
pip install dist/*whl
49
+
27
50
You can verify the correctness of the installation with the unit tests (*outside of the source folder*, as otherwise Python will get confused and try to use the `Mikado` source folder instead of the system installation):
@@ -40,29 +63,29 @@ The steps above will ensure that any additional python dependencies will be inst
40
63
### Additional dependencies
41
64
42
65
Mikado by itself does require only the presence of a database solution, such as SQLite (although we do support MySQL and PostGRESQL as well).
43
-
However, the Daijin pipeline requires additional programs to run.
66
+
However, the Daijin pipeline requires additional programs to run.
44
67
45
68
For driving Mikado through Daijin, the following programs are required:
46
69
47
-
-[DIAMOND] or [Blast+] to provide protein homology. DIAMOND is preferred for its speed.
48
-
-[Prodigal] or [Transdecoder] to calculate ORFs. The versions of Transdecoder that we tested scale poorly in terms of runtime and disk usage, depending on the size of the input dataset. Prodigal is much faster and lighter, however, the data on our paper has been generated through Transdecoder - not Prodigal. Currently we set Prodigal as default.
49
-
- Mikado also makes use of a dataset of RNA-Seq high-quality junctions. We are using [Portcullis] to calculate this data alongside the alignments and assemblies.
70
+
-[DIAMOND][DIAMOND] or [Blast+][Blast+] to provide protein homology. DIAMOND is preferred for its speed.
71
+
-[Prodigal][Prodigal] or [Transdecoder][Transdecoder] to calculate ORFs. The versions of Transdecoder that we tested scale poorly in terms of runtime and disk usage, depending on the size of the input dataset. Prodigal is much faster and lighter, however, the data on our paper has been generated through Transdecoder - not Prodigal. Currently we set Prodigal as default.
72
+
- Mikado also makes use of a dataset of RNA-Seq high-quality junctions. We are using [Portcullis][Portcullis] to calculate this data alongside the alignments and assemblies.
50
73
51
74
If you plan to generate the alignment and assembly part as well through Daijin, the pipeline requires the following:
52
75
53
76
- SAMTools
54
77
- If you have short-read RNA-Seq data:
55
-
- At least one short-read RNA-Seq aligner, choice between [GSNAP], [GMAP], [STAR], [TopHat2], [HISAT2]
56
-
- At least one RNA-Seq assembler, choice between [StringTie], [Trinity], [Cufflinks], [CLASS2]. Trinity additionally requires [GMAP].
57
-
-[Portcullis] is optional, but highly recommended to retrieve high-quality junctions from the data
78
+
- At least one short-read RNA-Seq aligner, choice between [GSNAP], [GMAP][GMAP], [STAR][STAR], [TopHat2][TopHat2], [HISAT2][HISAT2]
79
+
- At least one RNA-Seq assembler, choice between [StringTie][StringTie], [Trinity][Trinity], [Cufflinks], [CLASS2][CLASS2]. Trinity additionally requires [GMAP][GMAP].
80
+
-[Portcullis][Portcullis] is optional, but highly recommended to retrieve high-quality junctions from the data
58
81
- If you have long-read RNA-Seq data:
59
-
- At least one long-read RNA-Seq aligner, current choice between [STAR] and [GMAP]
82
+
- At least one long-read RNA-Seq aligner, current choice between [STAR][STAR] and [GMAP][GMAP]
60
83
61
84
## Development guide
62
85
63
86
We provide source trail files ([https://www.sourcetrail.com/](https://www.sourcetrail.com/)) to aid in development.
64
87
As required by the SourceTrail application, these files are present in the master directory, as "Mikado.srctrl*".
65
-
88
+
66
89
## Citing Mikado
67
90
68
91
If you use Mikado in your work, please consider to cite:
@@ -84,4 +107,4 @@ If you also use Portcullis to provide reliable junctions to Mikado, either indep
0 commit comments