Skip to content

Commit

Permalink
Merge pull request #7 from bio-raum/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
marchoeppner authored Sep 10, 2024
2 parents cea8d49 + ab7ea4e commit 2ef1f25
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

If you are really impatient, check out our [quickstart](docs/quickstart.md) guide.

![schema](images/GABI_Schema_v4.png)
![schema](images/GABI_Schema_v5.png)

## Documentation

Expand Down
2 changes: 2 additions & 0 deletions docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ QUAST provides some insights into the assembly quality - with some caveats conce

![quast](../images/multiqc_quast.png)

Also see our [troubleshooting](troubleshooting.md) document for more explanations on the limitation of Quast as used by GABI.

#### Busco

BUSCO identifies the presence of expected conserved bacterial genes - a good assembly should be near-complete and not contain (many) duplicated BUSCOs.
Expand Down
Binary file removed images/GABI_Schema_v4.png
Binary file not shown.
Binary file added images/GABI_Schema_v5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/multiqc_busco.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/multiqc_confindr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/multiqc_general_stats.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/multiqc_kraken.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/multiqc_quast.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 1 addition & 4 deletions lib/WorkflowPipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ class WorkflowPipeline {
log.info 'No --reference_base specified, cannot proceed!'
System.exit(1)
}
if (params.reference_fasta && !params.reference_gff || !params.reference_fasta && params.reference_gff) {
log.info 'You need to provide both a reference FASTA file and reference GFF file for Quast.'
System.exit(1)
}

}

}
8 changes: 4 additions & 4 deletions workflows/gabi.nf
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ workflow GABI {
*/
COVERAGE(
ch_assemblies_clean,
ch_short_reads_only,
ch_ont_reads_only,
ch_pb_reads_only
ch_illumina_trimmed,
ch_ont_trimmed,
ch_pacbio_trimmed
)
ch_versions = ch_versions.mix(COVERAGE.out.versions)
ch_multiqc_illumina = ch_multiqc_illumina.mix(
Expand Down Expand Up @@ -372,7 +372,7 @@ workflow GABI {
REPORT(
ch_reports_grouped
)
}
}

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit 2ef1f25

Please sign in to comment.