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
It looks like this pull-request is has been made against the [${{github.event.pull_request.head.repo.full_name }}](https://github.com/${{github.event.pull_request.head.repo.full_name }}) `master` branch.
36
-
The `master` branch on nf-core repositories should always contain code from the latest release.
37
-
Because of this, PRs to `master` are only allowed if they come from the [${{github.event.pull_request.head.repo.full_name }}](https://github.com/${{github.event.pull_request.head.repo.full_name }}) `dev` branch.
35
+
It looks like this pull-request is has been made against the [${{github.event.pull_request.head.repo.full_name }}](https://github.com/${{github.event.pull_request.head.repo.full_name }}) `main` branch.
36
+
The `main` branch should always contain code from the latest release.
37
+
Because of this, PRs to `main` are only allowed if they come from the [${{github.event.pull_request.head.repo.full_name }}](https://github.com/${{github.event.pull_request.head.repo.full_name }}) `dev` branch.
38
38
39
39
You do not need to close this PR, you can change the target branch to `dev` by clicking the _"Edit"_ button at the top of this page.
40
40
Note that even after this, the test will continue to show as failing until you push a new commit.
3. Added parameter `filter_genes_by_aa_length` with default set to `24` which allows removal of genes with ORFs shorter than 24 [#125](https://github.com/Plant-Food-Research-Open/genepal/issues/125)
13
+
14
+
### `Fixed`
15
+
16
+
1. Fixed an issue where TSEBRA failed because LIFTOFF lifted non-protein coding genes [#121](https://github.com/Plant-Food-Research-Open/genepal/issues/121)
17
+
2. Switched branch name from `master` to `main` in the GHA CIs
18
+
3. Fixed an issue in `genepal_report.Rmd` which caused the pangene matrix plot to fail when the number of clusters exceeded 65536 [#124](https://github.com/Plant-Food-Research-Open/genepal/issues/124)
19
+
4. Fixed an issue where `GENEPALREPORT` process failed due to OOM kill signal from SLURM [#123](https://github.com/Plant-Food-Research-Open/genepal/issues/123)
20
+
5. Fixed an issue where Gff merge after liftoff failed when one of the Gff files did not contain any genes
21
+
6. Fixed an issue where `gxf_fasta_agat_spaddintrons_spextractsequences` crashed due to short introns [#89](https://github.com/Plant-Food-Research-Open/genepal/issues/89)
Copy file name to clipboardexpand all lines: README.md
+10-3
Original file line number
Diff line number
Diff line change
@@ -35,14 +35,16 @@
35
35
- Merge multi-reference liftoffs
36
36
- Remove liftoff transcripts marked by _valid_ORF=False_
37
37
- Remove liftoff genes with any intron shorter than 10 bp
38
-
- Remove rRNAand tRNA from liftoff
38
+
- Remove rRNA, tRNA and other non-protein coding models from liftoff
39
39
- Optionally, allow or remove iso-forms
40
40
- Remove BRAKER models from Liftoff loci
41
41
- Merge Liftoff and BRAKER models
42
42
- Optionally, remove models without any EggNOG-mapper hits
43
43
-[EggNOG-mapper](https://github.com/eggnogdb/eggnog-mapper): Add functional annotation to gff
44
44
-[GenomeTools](https://github.com/genometools/genometools): GFF format validation
45
-
-[GffRead](https://github.com/gpertea/gffread): Extraction of protein sequences
45
+
-[GffRead](https://github.com/gpertea/gffread)
46
+
- Extraction of protein sequences
47
+
- Optionally, remove models with ORFs shorter than `N` amino acids
46
48
-[OrthoFinder](https://github.com/davidemms/OrthoFinder): Perform phylogenetic orthology inference across genomes
47
49
-[GffCompare](https://github.com/gpertea/gffcompare): Compare and benchmark against an existing annotation
48
50
-[BUSCO](https://gitlab.com/ezlab/busco): Completeness statistics for genome and annotation through proteins
@@ -97,7 +99,7 @@ sbatch ./pfr_genepal
97
99
98
100
plant-food-research-open/genepal workflows were originally scripted by Jason Shiller ([@jasonshiller](https://github.com/jasonshiller)). Usman Rashid ([@gallvp](https://github.com/gallvp)) wrote the Nextflow pipeline.
99
101
100
-
We thank the following people for their extensive assistance in the development of this pipeline:
102
+
We thank the following people for extensive assistance in the development of the pipeline,
101
103
102
104
- Cecilia Deng [@CeciliaDeng](https://github.com/CeciliaDeng)
103
105
- Charles David [@charlesdavid](https://github.com/charlesdavid)
@@ -107,6 +109,10 @@ We thank the following people for their extensive assistance in the development
107
109
- Susan Thomson [@cflsjt](https://github.com/cflsjt)
Copy file name to clipboardexpand all lines: assets/multiqc_config.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
report_comment: >
2
2
This report has been generated by the <a href="https://github.com/plant-food-research-open/genepal" target="_blank">plant-food-research-open/genepal</a>
3
3
analysis pipeline. For information about how to interpret these results, please see the
Copy file name to clipboardexpand all lines: bin/genepal_report.Rmd
+25-4
Original file line number
Diff line number
Diff line change
@@ -190,22 +190,43 @@ cat("<br>")
190
190
191
191
192
192
```{r pheatmap, eval=(exists("n0_df") && !is.null(n0_df$heatmap)), results='hide', fig.align='center', fig.cap="Heatmap showing number of proteins present in each orthocluster (clusters where all individuals have 1 copy are excluded). Columns = Orthologue cluster, Row = Individual", fig.width=7, fig.height=7, dpi=150, warning=FALSE}
|`allow_isoforms`| Allow multiple isoforms for gene models |`boolean`| True |||
65
+
|`enforce_full_intron_support`| Require every model to have external evidence for all its introns |`boolean`| True |||
66
+
|`filter_liftoff_by_hints`| Use BRAKER hints to filter Liftoff models |`boolean`| True |||
67
+
|`eggnogmapper_purge_nohits`| Purge transcripts which do not have a hit against eggnog |`boolean`||||
68
+
|`filter_genes_by_aa_length`| Filter genes with open reading frames shorter than the specified number of amino acids excluding the stop codon. If set to `null`, this filter step is skipped. |`integer`| 24 |||
0 commit comments