-
Notifications
You must be signed in to change notification settings - Fork 3
Init channel-based reports #87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
8ed5a55
init channel-based reports
dimalvovs 9e398cf
Apply suggestions from code review
dimalvovs b23a86e
Revert "Apply suggestions from code review"
dimalvovs 291f56a
clean up notebooks
dimalvovs d00be43
revert back to enable tests
dimalvovs 749a073
fix quarto jupyter on macs
dimalvovs f4b5b62
pick container for tests in ci
dimalvovs 41b5fb9
allow custom container in test
dimalvovs cc52095
update docker instructions
dimalvovs 0819c7c
init qc report
dimalvovs 867432b
Merge branch 'main' into feat/channel-based-reports
dimalvovs 83be607
fix test case
dimalvovs c16e04e
use inputs from current dir
dimalvovs 4fc6e90
add missing subworkflow
dimalvovs d2ffbf9
extend to multiple reports
dimalvovs 4e34a1a
Changed column names associated with file 'concatenated_cdr3_sorted'
KevinMLanderos 5bf055e
Update template_qc.qmd to use AIRR column names (junction_aa, v_call,…
KevinMLanderos 9e56380
test: align minimal samplesheet header expectation with alias column
Copilot d628cdb
Apply suggestions from code review
dimalvovs 0493dcd
adjust copilot suggestions
dimalvovs 353bbc4
added 'alias' column to samplesheet_check.nf.test
KevinMLanderos 08a8991
Revert recent commits to restore state at 0493dcd
KevinMLanderos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| // Generic process to render a Quarto notebook to HTML | ||
| process RENDER_NOTEBOOK { | ||
| tag "${notebook.getBaseName()}" | ||
| label 'process_single' | ||
|
|
||
| input: | ||
| tuple path(notebook), path(files) // path(files) just stages files in root dir | ||
| val project_name | ||
| val workflow_cmd | ||
|
|
||
|
dimalvovs marked this conversation as resolved.
|
||
| output: | ||
| path "${notebook.getBaseName()}.html", emit: report_html | ||
|
|
||
| script: | ||
| """ | ||
| ## render qmd report to html | ||
| quarto render ${notebook} \\ | ||
| -P project_name:${project_name} \\ | ||
| -P workflow_cmd:'${workflow_cmd}' \\ | ||
| -P sample_table:${file(params.samplesheet)} \\ | ||
| --to html | ||
| """ | ||
|
|
||
| stub: | ||
| """ | ||
| touch ${notebook.getBaseName()}.html | ||
| """ | ||
| } | ||
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| samplesheet: "https://raw.githubusercontent.com/KarchinLab/TCRtoolkit/refs/heads/main/tests/test_data/minimal-example/samplesheet.csv" | ||
| samplesheet: "tests/test_data/minimal-example/samplesheet.csv" | ||
| outdir: "out-minimal-dev" | ||
| workflow_level: "sample,patient,compare" | ||
| #workflow_level: "sample,compare,patient" - uncomment once patient is fixed | ||
| workflow_level: "sample,compare" | ||
| input_format: "adaptive" | ||
| max_memory: 10.GB | ||
| max_cpus: 4 |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.