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 3 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
37 changes: 37 additions & 0 deletions recipes/lodei/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package:
name: lodei
version: 1.0.0
Copy link
Member

Choose a reason for hiding this comment

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

Please use jinja variables for the version and reuse them in the URL. This will enable our bot to update the package when you release a new version


source:
url: https://github.com/rna-editing1/lodei/archive/refs/tags/v1.0.0.tar.gz
md5: aab7ea1fa9c1e7b250b8b2d02065dd5d

build:
noarch: python
number: 0
script: python -m pip install . --no-deps --ignore-installed
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 =1.1.2
Copy link
Member

Choose a reason for hiding this comment

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

this is specific version really needed?

- pandas
- matplotlib-base

test:
commands:
- lodei --help

about:
home: https://github.com/rna-editing1/lodei
license: GPL-3.0
Copy link
Member

Choose a reason for hiding this comment

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

please use SPDX identifiers

license_file: LICENSE
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