-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Add get_mnv #51178
Merged
Merged
Add get_mnv #51178
Changes from 3 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
dce5aa4
add get_mnv
Paururo 64c730c
add get_mnv
Paururo eeeaa3a
Fix typo, add categories
Paururo 1dcc3da
Add run_exports to get_mnv recipe
Paururo 48bb441
fix run_exports to get_mnv recipe
Paururo 60b8600
fix dependencies
Paururo 628d818
fix dependencies
Paururo 2a25e4a
fix open error
Paururo 7ad6edb
try connect
Paururo 308fc05
Update license
Paururo 3770d9c
libraries to host and add license_fam
Paururo 17df3f1
libraries to host and add license_fam
Paururo c2af868
add rabit sugg pins in run, license and ver
Paururo 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 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,42 @@ | ||
{% set name = "get_mnv" %} | ||
{% set version = "1.0.0" %} | ||
{% set sha256 = "a94eda49def81ef76217b8d39095677335945105d581a0cc9b777db4f6f6b014" %} | ||
|
||
package: | ||
name: "{{ name|lower }}" | ||
version: "{{ version }}" | ||
|
||
source: | ||
url: "https://github.com/PathoGenOmics-Lab/{{ name }}/archive/refs/tags/{{ version }}.tar.gz" | ||
sha256: "{{ sha256 }}" | ||
|
||
build: | ||
number: 0 | ||
script: "cargo install --no-track --locked --verbose --root \"${PREFIX}\" --path ." | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('rust') }} | ||
|
||
test: | ||
commands: | ||
- get_mnv --help # Asegúrate de que `get_mnv` sea el nombre del binario | ||
|
||
|
||
about: | ||
home: https://github.com/PathoGenOmics-Lab/get_mnv | ||
license: GPL-3.0 | ||
license_file: LICENSE | ||
summary: 'Tool to identify Multi-Nucleotide Variants (MNVs) in genomic sequences.' | ||
description: | | ||
get_MNV is a tool designed to identify Multi-Nucleotide Variants (MNVs) within the same codon in genomic sequences, providing more accurate annotation for genomic data. | ||
doc_url: https://github.com/PathoGenOmics-Lab/get_mnv | ||
dev_url: https://github.com/PathoGenOmics-Lab/get_mnv | ||
|
||
extra: | ||
recipe-maintainers: | ||
- PathoGenOmics-Lab | ||
categories: | ||
- Genomics | ||
- Variant Analysis | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Enhance test coverage and maintain consistency.
While the current test ensures that the
get_mnv
binary is installed and executable, consider adding more comprehensive tests to verify the tool's functionality.Would you like assistance in generating more comprehensive test commands based on the tool's functionality?