-
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 rna-seqc python utilities and qtl package #51344
Open
lrvdijk
wants to merge
4
commits into
bioconda:master
Choose a base branch
from
lrvdijk:add-rna-seqc-pyutils
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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,49 @@ | ||
{% set name = "qtl" %} | ||
{% set version = "0.1.8" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/qtl-{{ version }}.tar.gz | ||
sha256: 8fdb99cda1ceff578a233db6c15a944fa57b43a2826af41c292e36848906117b | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage("rna-seqc-python", max_pin="x.x") }} | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
run: | ||
- python | ||
- numpy | ||
- pandas | ||
- scipy | ||
- matplotlib-base | ||
- seaborn | ||
- pybigwig | ||
- bx-python | ||
|
||
test: | ||
imports: | ||
- qtl | ||
commands: | ||
- pip check | ||
requires: | ||
- pip | ||
|
||
about: | ||
home: https://github.com/broadinstitute/pyqtl | ||
summary: Utilities for analyzing and visualizing QTL data | ||
license: BSD-3-Clause | ||
license_file: LICENSE | ||
|
||
extra: | ||
recipe-maintainers: | ||
- lrvdijk |
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,48 @@ | ||
{% set pypi_name = "rnaseqc" %} | ||
{% set version = "0.0.3" %} | ||
|
||
package: | ||
name: "rna-seqc-python" | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/rnaseqc-{{ version }}.tar.gz | ||
sha256: 857ad1ad54f2b563163d75ff8c5f2439208d06980b7c8ded279bd59d19c48a0f | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage("rna-seqc-python", max_pin="x.x") }} | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
run: | ||
- python | ||
- numpy | ||
- pandas | ||
- matplotlib-base | ||
- seaborn | ||
- qtl | ||
- nbformat | ||
|
||
test: | ||
imports: | ||
- rnaseqc | ||
commands: | ||
- pip check | ||
requires: | ||
- pip | ||
|
||
about: | ||
home: https://github.com/broadinstitute/rnaseqc | ||
summary: Multi-sample visualization of metrics from RNA-SeQC | ||
license: BSD 3-clause | ||
license_family: BSD | ||
|
||
extra: | ||
recipe-maintainers: | ||
- lrvdijk |
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.
💡 Codebase verification
The
run_exports
section appears unnecessary as no dependencies onrna-seqc-python
were found. Please remove it to simplify the build configuration.rna-seqc-python
detected in theqtl
package.rna-seqc-python
is not listed insetup.py
orpyproject.toml
.🔗 Analysis chain
Build configuration looks good, but please verify the
run_exports
section.The build configuration is well-structured:
noarch: python
is correctly set for a pure Python package.However, the
run_exports
section is unusual for a Python package. Please verify if this is intentional and necessary. If it is, consider adding a comment explaining why this pinning is required.To verify the relationship between
qtl
andrna-seqc-python
, you can run the following script:This script will help determine if there's a strong dependency between
qtl
andrna-seqc-python
that justifies therun_exports
pinning.[/run_scripts]
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 777
Script:
Length of output: 678