Skip to content
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

Update hmftools CHORD and CUPPA #52175

Merged
merged 9 commits into from
Nov 19, 2024

Conversation

luan-n-nguyen
Copy link
Contributor

Describe your pull request here


Please read the guidelines for Bioconda recipes before opening a pull request (PR).

General instructions

  • If this PR adds or updates a recipe, use "Add" or "Update" appropriately as the first word in its title.
  • New recipes not directly relevant to the biological sciences need to be submitted to the conda-forge channel instead of Bioconda.
  • PRs require reviews prior to being merged. Once your PR is passing tests and ready to be merged, please issue the @BiocondaBot please add label command.
  • Please post questions on Gitter or ping @bioconda/core in a comment.

Instructions for avoiding API, ABI, and CLI breakage issues

Conda is able to record and lock (a.k.a. pin) dependency versions used at build time of other recipes.
This way, one can avoid that expectations of a downstream recipe with regards to API, ABI, or CLI are violated by later changes in the recipe.
If not already present in the meta.yaml, make sure to specify run_exports (see here for the rationale and comprehensive explanation).
Add a run_exports section like this:

build:
  run_exports:
    - ...

with ... being one of:

Case run_exports statement
semantic versioning {{ pin_subpackage("myrecipe", max_pin="x") }}
semantic versioning (0.x.x) {{ pin_subpackage("myrecipe", max_pin="x.x") }}
known breakage in minor versions {{ pin_subpackage("myrecipe", max_pin="x.x") }} (in such a case, please add a note that shortly mentions your evidence for that)
known breakage in patch versions {{ pin_subpackage("myrecipe", max_pin="x.x.x") }} (in such a case, please add a note that shortly mentions your evidence for that)
calendar versioning {{ pin_subpackage("myrecipe", max_pin=None) }}

while replacing "myrecipe" with either name if a name|lower variable is defined in your recipe or with the lowercase name of the package in quotes.

Bot commands for PR management

Please use the following BiocondaBot commands:

Everyone has access to the following BiocondaBot commands, which can be given in a comment:

@BiocondaBot please update Merge the master branch into a PR.
@BiocondaBot please add label Add the please review & merge label.
@BiocondaBot please fetch artifacts Post links to CI-built packages/containers.
You can use this to test packages locally.

Note that the @BiocondaBot please merge command is now depreciated. Please just squash and merge instead.

Also, the bot watches for comments from non-members that include @bioconda/<team> and will automatically re-post them to notify the addressed <team>.

Copy link
Contributor

coderabbitai bot commented Nov 19, 2024

📝 Walkthrough
📝 Walkthrough

Walkthrough

The pull request introduces modifications to the meta.yaml files for two packages: hmftools-chord and hmftools-cuppa. In the hmftools-chord package, the version is updated to "2.1.0_beta", with the beta_suffix changed from ".1" to ".2". The SHA256 checksum is altered to reflect a new value, and the build number is incremented from 2 to 3. The source URL is also updated to include these changes. For the hmftools-cuppa package, the version is modified to "2.3.0_beta.1", and the SHA256 checksum is updated to a new value, consolidating the JAR and source definitions into a single entry. The build number for this package is incremented from 0 to 1. Additionally, a new dependency unzip is added, and the requirements section is updated accordingly. No changes are made to the test commands in either package.

Possibly related PRs

Suggested labels

please review & merge

Suggested reviewers

  • martin-g
  • mencian

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Outside diff range and nitpick comments (1)
recipes/hmftools-cuppa/meta.yaml (1)

1-3: Consider consolidating version and beta suffix.

Instead of splitting the beta version across two variables, consider using a single version variable for better clarity and maintainability.

-{% set version = "2.3.0_beta" %}
-{% set beta_suffix = ".1" %}
+{% set version = "2.3.0_beta.1" %}
🧰 Tools
🪛 yamllint

[error] 1-1: syntax error: found character '%' that cannot start any token

(syntax)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between ebcf6a3 and fbfe1fa.

📒 Files selected for processing (2)
  • recipes/hmftools-chord/meta.yaml (2 hunks)
  • recipes/hmftools-cuppa/meta.yaml (1 hunks)
🔇 Additional comments (4)
recipes/hmftools-chord/meta.yaml (3)

15-15: LGTM! Build number increment is appropriate

The build number increment follows conda-build guidelines and is appropriate for the version update.


Line range hint 1-38: Package configuration follows bioconda best practices

The package configuration is well-structured with:

  • Proper version pinning through run_exports
  • Appropriate dependencies specification
  • Version verification in test command
  • Clear license and metadata

1-3: Verify version and checksum against upstream release

The version update and checksum change should be validated against the official release.

🧰 Tools
🪛 yamllint

[error] 1-1: syntax error: found character '%' that cannot start any token

(syntax)

recipes/hmftools-cuppa/meta.yaml (1)

15-18: LGTM! Build configuration follows best practices.

The build number increment and run_exports configuration are correctly implemented, following Bioconda guidelines for version pinning and ABI compatibility.

Comment on lines 10 to 11
url: https://github.com/hartwigmedical/hmftools/releases/download/cuppa-v{{ version }}/cuppa-{{ version|replace(".0", "") }}{{ beta_suffix }}.jar
sha256: '{{ sha256 }}'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

URL pattern in meta.yaml needs correction

The current URL pattern in meta.yaml is incorrect. The actual asset names in the release follow a different pattern:

  • Current pattern: cuppa-2.3_beta.1.jar
  • Actual pattern: cuppa_v2.3_beta.1.jar

The differences are:

  • Uses underscore (_) instead of hyphen (-) after "cuppa"
  • Includes "v" in the version part
🔗 Analysis chain

Verify the GitHub release URL accessibility.

The URL construction involves multiple string manipulations. Let's verify that the release artifact is accessible.


Let me verify the correct URL pattern by checking the repository's releases.


Let me check specifically for CUPPA releases to understand their naming pattern.


Let me check the actual assets in the specific CUPPA release we're interested in.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the GitHub release artifact exists
# Extract version and construct URL
VERSION="2.3.0_beta"
BETA_SUFFIX=".1"
URL="https://github.com/hartwigmedical/hmftools/releases/download/cuppa-v${VERSION}/cuppa-${VERSION/.0/}${BETA_SUFFIX}.jar"

# Check if the URL is accessible
curl -sI "$URL" | head -n 1

Length of output: 278


Script:

#!/bin/bash
# Check recent releases and their asset patterns
gh release list --repo hartwigmedical/hmftools --limit 5

Length of output: 459


Script:

#!/bin/bash
# Search for CUPPA releases
gh release list --repo hartwigmedical/hmftools | grep -i cuppa

Length of output: 865


Script:

#!/bin/bash
# Check assets for CUPPA v2.3 beta release
gh release view cuppa-v2.3.0_beta --repo hartwigmedical/hmftools

Length of output: 478

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 791d442 and f274a18.

📒 Files selected for processing (1)
  • recipes/hmftools-cuppa/build.sh (1 hunks)
🧰 Additional context used
🪛 Shellcheck
recipes/hmftools-cuppa/build.sh

[warning] 7-7: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.

(SC2164)

🔇 Additional comments (2)
recipes/hmftools-cuppa/build.sh (2)

4-5: LGTM: Directory creation looks good

The directory creation commands are properly implemented using the -p flag for safe creation.


10-12: LGTM: Script setup is correct

The executable script is properly set up with appropriate permissions.

Comment on lines 7 to +8
cd "${SRC_DIR}"
mv jar/cuppa*.jar $TGT/cuppa.jar
${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv src/cuppa/src/main/python/pycuppa/
mv cuppa*.jar $TGT/cuppa.jar
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Add error handling for directory change operation

The cd command should handle potential failures to prevent script from continuing in wrong directory.

Apply this diff to add error handling:

-cd "${SRC_DIR}"
+cd "${SRC_DIR}" || exit 1

Also, consider making the JAR file pattern more specific to avoid potential conflicts:

-mv cuppa*.jar $TGT/cuppa.jar
+mv cuppa-*.jar $TGT/cuppa.jar
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
cd "${SRC_DIR}"
mv jar/cuppa*.jar $TGT/cuppa.jar
${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv src/cuppa/src/main/python/pycuppa/
mv cuppa*.jar $TGT/cuppa.jar
cd "${SRC_DIR}" || exit 1
mv cuppa-*.jar $TGT/cuppa.jar
🧰 Tools
🪛 Shellcheck

[warning] 7-7: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.

(SC2164)

Comment on lines 14 to 17
mkdir -p /tmp/cuppa_jar/
RUN unzip -n cuppa*.jar -d /tmp/cuppa_jar/
${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv /tmp/cuppa_jar/pycuppa/
RUN rm -r /tmp/cuppa_jar/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix shell script syntax and add error handling

There are several issues in this section:

  1. The RUN prefix is incorrect (appears to be copied from a Dockerfile)
  2. Missing error handling for critical operations
  3. Temporary directory should use mktemp for safety

Apply this diff to fix the issues:

-mkdir -p /tmp/cuppa_jar/
-RUN unzip -n cuppa*.jar -d /tmp/cuppa_jar/
-${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv /tmp/cuppa_jar/pycuppa/
-RUN rm -r /tmp/cuppa_jar/
+TEMP_DIR=$(mktemp -d)
+trap 'rm -rf "${TEMP_DIR}"' EXIT
+
+unzip -n cuppa*.jar -d "${TEMP_DIR}" || exit 1
+${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv "${TEMP_DIR}/pycuppa/" || exit 1

The changes:

  • Use mktemp for secure temporary directory creation
  • Add cleanup trap to ensure temporary directory is removed
  • Remove incorrect RUN prefix
  • Add error handling for critical operations
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
mkdir -p /tmp/cuppa_jar/
RUN unzip -n cuppa*.jar -d /tmp/cuppa_jar/
${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv /tmp/cuppa_jar/pycuppa/
RUN rm -r /tmp/cuppa_jar/
TEMP_DIR=$(mktemp -d)
trap 'rm -rf "${TEMP_DIR}"' EXIT
unzip -n cuppa*.jar -d "${TEMP_DIR}" || exit 1
${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv "${TEMP_DIR}/pycuppa/" || exit 1

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Outside diff range and nitpick comments (1)
recipes/hmftools-cuppa/build.sh (1)

8-8: Use more specific JAR file pattern

The current pattern cuppa*.jar is too loose and could match unexpected files.

Apply this diff:

-mv cuppa*.jar $TGT/cuppa.jar
+mv cuppa-*.jar "$TGT/cuppa.jar" || exit 1
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between f274a18 and b5a96a6.

📒 Files selected for processing (1)
  • recipes/hmftools-cuppa/build.sh (1 hunks)
🧰 Additional context used
🪛 Shellcheck
recipes/hmftools-cuppa/build.sh

[warning] 7-7: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.

(SC2164)

Comment on lines +4 to 5
[ -d "$TGT" ] || mkdir -p $TGT
[ -d "${PREFIX}/bin" ] || mkdir -p "${PREFIX}/bin"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Add proper quoting and error handling for directory creation

The directory creation commands should be properly quoted and include error handling to ensure script reliability.

Apply this diff:

-[ -d "$TGT" ] || mkdir -p $TGT
-[ -d "${PREFIX}/bin" ] || mkdir -p "${PREFIX}/bin"
+[ -d "$TGT" ] || mkdir -p "$TGT" || exit 1
+[ -d "${PREFIX}/bin" ] || mkdir -p "${PREFIX}/bin" || exit 1
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
[ -d "$TGT" ] || mkdir -p $TGT
[ -d "${PREFIX}/bin" ] || mkdir -p "${PREFIX}/bin"
[ -d "$TGT" ] || mkdir -p "$TGT" || exit 1
[ -d "${PREFIX}/bin" ] || mkdir -p "${PREFIX}/bin" || exit 1


cp $RECIPE_DIR/cuppa.sh $TGT/cuppa
ln -s $TGT/cuppa ${PREFIX}/bin/
chmod 0755 "${PREFIX}/bin/cuppa"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Add error handling for chmod operation

Critical operations like chmod should include error handling.

Apply this diff:

-chmod 0755 "${PREFIX}/bin/cuppa"
+chmod 0755 "${PREFIX}/bin/cuppa" || exit 1
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
chmod 0755 "${PREFIX}/bin/cuppa"
chmod 0755 "${PREFIX}/bin/cuppa" || exit 1

Comment on lines 14 to 17
mkdir -p /tmp/cuppa_jar/
unzip -n cuppa*.jar -d /tmp/cuppa_jar/
${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv /tmp/cuppa_jar/pycuppa/
rm -r /tmp/cuppa_jar/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Critical: Improve temporary directory handling and add error handling

The current implementation has several critical issues:

  1. Uses hardcoded temporary directory
  2. Lacks cleanup on script failure
  3. Missing error handling for critical operations

Apply this diff to fix these issues:

-mkdir -p /tmp/cuppa_jar/
-unzip -n cuppa*.jar -d /tmp/cuppa_jar/
-${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv /tmp/cuppa_jar/pycuppa/
-rm -r /tmp/cuppa_jar/
+TEMP_DIR=$(mktemp -d) || exit 1
+trap 'rm -rf "${TEMP_DIR}"' EXIT
+
+unzip -n cuppa-*.jar -d "${TEMP_DIR}" || exit 1
+${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv "${TEMP_DIR}/pycuppa/" || exit 1

These changes:

  • Use mktemp for secure temporary directory creation
  • Add cleanup trap to ensure temporary directory is always removed
  • Add error handling for critical operations
  • Use more specific JAR file pattern
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
mkdir -p /tmp/cuppa_jar/
unzip -n cuppa*.jar -d /tmp/cuppa_jar/
${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv /tmp/cuppa_jar/pycuppa/
rm -r /tmp/cuppa_jar/
TEMP_DIR=$(mktemp -d) || exit 1
trap 'rm -rf "${TEMP_DIR}"' EXIT
unzip -n cuppa-*.jar -d "${TEMP_DIR}" || exit 1
${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv "${TEMP_DIR}/pycuppa/" || exit 1

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 32c5163 and 4193eb2.

📒 Files selected for processing (1)
  • recipes/hmftools-cuppa/build.sh (1 hunks)
🧰 Additional context used
🪛 Shellcheck
recipes/hmftools-cuppa/build.sh

[warning] 7-7: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.

(SC2164)

🔇 Additional comments (4)
recipes/hmftools-cuppa/build.sh (4)

4-5: Previous review comment is still applicable

The issues with directory creation commands regarding proper quoting and error handling have not been addressed.


7-8: Previous review comments are still applicable

The issues regarding error handling for the cd command and the JAR file pattern specificity have not been addressed.

🧰 Tools
🪛 Shellcheck

[warning] 7-7: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.

(SC2164)


12-12: Previous review comment is still applicable

The issue regarding error handling for the chmod operation has not been addressed.


14-17: Previous review comments about temporary directory handling are still applicable

The issues regarding secure temporary directory creation, cleanup, and error handling have not been addressed.

Comment on lines +14 to +17
mkdir -p /tmp/cuppa_jar/
unzip -n $TGT/cuppa.jar -d /tmp/cuppa_jar/
${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv /tmp/cuppa_jar/pycuppa/
rm -r /tmp/cuppa_jar/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Optimize file operations to avoid unnecessary moves

The current implementation moves the JAR file to the target directory and then unzips it from there, which is inefficient.

Apply this diff to optimize the operations:

-mv cuppa*.jar $TGT/cuppa.jar
+TEMP_DIR=$(mktemp -d) || exit 1
+trap 'rm -rf "${TEMP_DIR}"' EXIT
 
-mkdir -p /tmp/cuppa_jar/
-unzip -n $TGT/cuppa.jar -d /tmp/cuppa_jar/
-${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv /tmp/cuppa_jar/pycuppa/
-rm -r /tmp/cuppa_jar/
+# First unzip and install from the source
+unzip -n cuppa-*.jar -d "${TEMP_DIR}" || exit 1
+${PYTHON} -m pip install --no-build-isolation --no-deps --no-cache-dir -vvv "${TEMP_DIR}/pycuppa/" || exit 1
+
+# Then move the JAR to final location
+mv cuppa-*.jar $TGT/cuppa.jar || exit 1

Committable suggestion skipped: line range outside the PR's diff.

@luan-n-nguyen
Copy link
Contributor Author

@BiocondaBot please fetch artifacts

@BiocondaBot
Copy link
Collaborator

Package(s) built are ready for inspection:

Arch Package Zip File / Repodata CI Instructions
noarch hmftools-chord-2.1.0_beta-hdfd78af_3.tar.bz2 noarch.zip GitHub Actions
showYou may also use conda to install after downloading and extracting the zip file. conda install -c ./packages <package name>
noarch hmftools-cuppa-2.3.0_beta-py311r42hdfd78af_1.tar.bz2 noarch.zip GitHub Actions
showYou may also use conda to install after downloading and extracting the zip file. conda install -c ./packages <package name>

@mencian mencian merged commit 672e197 into bioconda:master Nov 19, 2024
6 checks passed
@luan-n-nguyen luan-n-nguyen deleted the update_chord_cuppa branch November 20, 2024 23:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants