Implement changes from quarto-notebooks branch#88
Merged
Merged
Conversation
- Updated env.yml, nextflow.config, README.md - Added new notebooks - Old notebooks will be retained for compatibility until new notebooks are fully implemented Co-Authored-By: KevinMLanderos <kevinmezalanderos@gmail.com>
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implementing quarto notebooks from @KevinMLanderos since
quarto-notebooksbranch drifted from mainAdd Quarto Report Notebooks to Pipeline
This PR integrates Quarto report notebooks into the TCRtoolkit pipeline. Below are the implementation instructions.
1. New Files —
notebooks/Add the following
.qmdfiles from/lab/home/kmlanderos/projects2/TCRtoolkit/notebooks/:2.
env.yml— Add Dependencies3. Rendering — 4 Main Notebooks
After the pipeline finishes, render the 4 main notebooks using the following command (repeated for each):
The remaining notebooks (
template_pheno_sc,template_pheno_bulk,template_gliph, etc.) are not rendered directly — they are embedded via Quarto's{{< include >}}directive.4. Conditional Sub-Notebook Assembly
Before rendering, copy the relevant main notebook to a working directory and append include lines as needed. Do not modify the source templates directly.
template_discovery_brief.qmd--input_formatvaluecellranger{{< include ./template_pheno_sc.qmd >}}adaptiveorairr{{< include ./template_pheno_bulk.qmd >}}template_details_part2.qmd--workflow_levelincludespatient(e.g.sample,patient,compare){{< include ./template_giana.qmd >}}--use_gliph2is set{{< include ./template_gliph.qmd >}}Make sure the sub-notebook
.qmdfiles are also present in the same working directory so relative{{< include >}}paths resolve correctly during rendering.5. README.md
File updated to include patient workflow, pipeline parameters and HTML reports
Co-Authored-By: KevinMLanderos kevinmezalanderos@gmail.com