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

Add lodei recipe #52955

Merged
merged 8 commits into from
Dec 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions recipes/lodei/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{% set version = "1.0.0" %}

package:
name: lodei
version: {{version}}

source:
url: https://github.com/rna-editing1/lodei/archive/refs/tags/v{{version}}.tar.gz
sha256: e71d7bbd28a8227c8e5757c79f4c94f1bf9e1db278782cb82e5bcc2147721dfe

build:
noarch: python
number: 0
script: python -m pip install . --no-deps --no-build-isolation -vvv
run_exports:
- {{ pin_subpackage('lodei', max_pin="x") }}
Copy link
Member

Choose a reason for hiding this comment

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

Do you assume that every minor version 1.1 or 1.1.1 will break the CLI?

Copy link
Contributor Author

@rna-editing1 rna-editing1 Dec 23, 2024

Choose a reason for hiding this comment

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

I don't assume that a minor version change will break the CLI.


requirements:
host:
- python
- pip
run:
- pysamstats
- pandas
- matplotlib-base

test:
commands:
- lodei --help

about:
home: https://github.com/rna-editing1/lodei
license: GPL-3.0-or-later
license_file: LICENSE
doi: 10.1038/s41467-024-53298-y
summary: Analyze differentially edited A-to-I regions in two sets of RNA-seq samples.
details: |
LoDEI - the local differential editing index - offers a collection of programs
to detect and analyze differentially edited A-to-I regions in two sets of RNA-seq samples.
Loading