Update tasmanian-mismatch to 2.0.4 - #72
Closed
aerijman wants to merge 10 commits into
Closed
Conversation
aerijman
requested review from
lnblum
and
a lite review from Copilot
and removed request for
Copilot
September 1, 2026 18:16
Contributor
|
will this be run in "methylation-mode" or no? |
Contributor
Author
|
Ooops… I will fix this tomorrow. Thank you for the catch!!
Get Outlook for Mac<https://aka.ms/GetOutlookForMac>
From: Laura Blum ***@***.***>
Date: Tuesday, September 1, 2026 at 3:24 PM
To: nebiolabs/EM-seq ***@***.***>
Cc: Erijman, Ariel ***@***.***>; Author ***@***.***>
Subject: Re: [nebiolabs/EM-seq] Update tasmanian-mismatch to 2.0.4 (PR #72)
EXTERNAL SENDER: This email originated from outside the organization. Make sure you trust this sender before taking any actions.
[https://avatars.githubusercontent.com/u/51452159?s=20&v=4]lnblum left a comment (nebiolabs/EM-seq#72)<#72 (comment)>
will this be run in "methylation-mode" or no?
—
Reply to this email directly, view it on GitHub<#72?email_source=notifications&email_token=AGFBZSAXUCDWDVPG2KXTPZL5M4O63A5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKNBZHEZDAOBTG44KM4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KYZTPN52GK4S7MNWGSY3L#issuecomment-5499208378>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGFBZSGCQ5ZUP5MLZCJIBHL5M4O63AVCNFSNUABFKJSXA33TNF2G64TZHMZDIOBQGY2TSMRRHNEXG43VMU5TKMZRGUZDMMRYGI2KC5QC>.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS<https://github.com/notifications/mobile/ios/AGFBZSCMX3JU234ZLBVETE35M4O63A5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKNBZHEZDAOBTG44KM4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KUZTPN52GK4S7NFXXG> and Android<https://github.com/notifications/mobile/android/AGFBZSCUAHLW7XXFMAUCLX35M4O63A5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKNBZHEZDAOBTG44KM4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2K4ZTPN52GK4S7MFXGI4TPNFSA>. Download it today!
You are receiving this because you authored the thread.
|
lnblum
reviewed
Sep 1, 2026
lnblum
left a comment
Contributor
There was a problem hiding this comment.
sounds good, otherwise looks fine!
This reverts commit d93555e.
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
There are correctness/clarity issues in the updated Tasmanian version pin/reporting and README typos (including a GRCh38/GRCh39 mismatch) that should be fixed before approval.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
This PR updates the EM-seq Nextflow pipeline to use a newer tasmanian-mismatch tool version and adjusts documentation and test snapshots to reflect the updated environment/tooling.
Changes:
- Updated the
tasmanianmodule to usetasmanian-mismatchdirectly (new CLI invocation) and pinned a newer conda package version. - Updated README reference-genome download links/wording and clarified how to handle
nextflow.preview.topicfor Nextflow v24. - Refreshed
nf-testsnapshots (includingnf-testversion metadata).
File summaries
| File | Description |
|---|---|
modules/tasmanian.nf |
Pins/uses tasmanian-mismatch and updates how Tasmanian stats are generated + version reporting output tuple. |
README.md |
Updates reference-genome links (adds CpG island annotations) and adjusts the Nextflow v24 upgrade note. |
main.nf |
Comments out nextflow.preview.topic by default and adds guidance for older Nextflow versions. |
tests/main.nf.test.snap |
Updates stored test snapshot output/metadata for the current test environment (nf-test version, ordering). |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 4
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| tag { library } | ||
| publishDir "${params.outputDir}/stats/tasmanian" | ||
| conda "bioconda::samtools=1.22 bioconda::tasmanian-mismatch=1.0.9" | ||
| conda "bioconda::tasmanian-mismatch=2.0.3" |
| tuple val(library), path("${library}.tasmanian.csv"), emit: for_agg | ||
| tuple val("${task.process}"), val('samtools'), eval('samtools --version | head -n 1 | sed \'s/^samtools //\''), topic: versions | ||
| tuple val("${task.process}"), val('tasmanian'), val('*should be* 1.0.9'), topic: versions | ||
| tuple val("${task.process}"), val('tasmanian-mismatch'), val('*should be* 2.0.3'), topic: versions |
Comment on lines
+108
to
+110
| - **T2T CHM13**: [T2T_chm13v2.0+ meth_controls](https://neb-em-seq-sra.s3.us-east-1.amazonaws.com/T2T_chm13v2.0%2Bmeth_controls.fa.gz) [CpG Islands](https://neb-em-seq-sra.s3.us-east-1.amazonaws.com/human_t2t_cpg_islands.gtf) | ||
| - **GRCh38**: [GRCh39 + meth controls](https://neb-em-seq-sra.s3.us-east-1.amazonaws.com/grch38_core%2Bmeth_controls.fa.gz) [CpG Islands](https://neb-em-seq-sra.s3.us-east-1.amazonaws.com/human_grch38_cpg_islands.gtf) | ||
| - **GRCm39**: [GRCm39 + meth_controls](https://neb-em-seq-sra.s3.us-east-1.amazonaws.com/grcm39%2Bmeth_controls.fa.gz) [CpG Islands](https://neb-em-seq-sra.s3.us-east-1.amazonaws.com/grcm39_cpg_islands.gtf) |
Comment on lines
160
to
+162
| As of July, 2026, Nextflow v24 or older is not supported anymore. | ||
| If using Nextlfow version 24 is your only option, | ||
| please add `nextflow.preview.topic = true` as the top line in *main.nf* | ||
| please uncomment `nextflow.preview.topic = true` as the top line in *main.nf* |
Member
|
superseded by #74 |
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.
No description provided.