Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<p align="center">
<a style="text-decoration:none">
<img src="https://img.shields.io/badge/AI_MARRVEL-v1.1.0-blue.svg"/>
<img src="https://img.shields.io/badge/AI_MARRVEL-v1.1.2-blue.svg"/>
</a>
<a href='https://ai-marrvel.readthedocs.io/en/latest/?badge=latest'>
<img src='https://readthedocs.org/projects/ai-marrvel/badge/?version=latest' alt='Documentation Status' />
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# The short X.Y version
version = 'v1.1'
# The full version, including alpha/beta/rc tags
release = '1.1.0'
release = '1.1.2'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ workflow {
(vcf, hpo) = HANDLE_INPUT()

if (params.input_ped) {
vcf = VCF_PRE_PROCESS_TRIO(
(vcf, inheritance) = VCF_PRE_PROCESS_TRIO(
vcf,
file(params.input_ped),
fasta_tuple.map { it[0] },
Expand Down Expand Up @@ -62,7 +62,7 @@ workflow {
GENERATE_TRIO_FEATURES(
GENERATE_SINGLETON_FEATURES.out.merged_compressed_scores,
PREDICTION.out.default_predictions,
VCF_PRE_PROCESS_TRIO.out.inheritance,
inheritance,
)
PREDICTION_TRIO(
GENERATE_SINGLETON_FEATURES.out.merged_compressed_scores,
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ profiles {
manifest {
author = 'LiuzLab'
name = 'LiuzLab/AI_MARRVEL'
version = '1.1.0'
version = '1.1.2'

description = """AI-MARRVEL (AIM) is an AI system for rare genetic disease diagnosis."""
homePage = 'https://github.com/LiuzLab/AI_MARRVEL'
Expand Down
Loading