-
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
bug fixes for CAMPneu #51527
Open
mmkadam
wants to merge
9
commits into
bioconda:master
Choose a base branch
from
mmkadam:update_my_recipe
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
bug fixes for CAMPneu #51527
Changes from 4 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b92acf5
edit email for CAMPneu
mmkadam eb76457
Merge branch 'master' into update_my_recipe
mmkadam b261d18
Update recipes/CAMPneu/build.sh
mmkadam 3095db1
Update meta.yaml
mmkadam 6ba35df
Merge branch 'master' into update_my_recipe
mmkadam a061dd4
Delete recipes/CAMPneu/build.sh
mmkadam 6df1112
change package name to lowercase
mmkadam 98a5027
Merge branch 'master' into update_my_recipe
mmkadam 4b2bf1f
Merge branch 'master' into update_my_recipe
mmkadam 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,9 @@ | ||
#!/bin/bash | ||
|
||
# $PYTHON -m pip install . -vv | ||
|
||
mkdir -p $PREFIX/bin/ | ||
|
||
cp CAMPneu.nf nextflow.config $PREFIX/bin/ | ||
|
||
chmod +x $PREFIX/bin/CAMPneu.nf $PREFIX/bin/nextflow.config |
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,59 @@ | ||
{% set name = "CAMPneu" %} | ||
{% set version = "1.1.1" %} | ||
{% set hash = "1fab075c22e8f70c5677fa845018c2dcb489f7c540e14a553f0f387fe7d0f91c" %} | ||
{% set user = "appliedbinf" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/{{ user }}/{{ name }}/archive/refs/tags/{{ version }}.tar.gz | ||
sha256: {{ hash }} | ||
|
||
build: | ||
number: 0 | ||
noarch: generic | ||
script: | ||
- mkdir -p $PREFIX/bin/ | ||
- cp CAMPneu.nf nextflow.config $PREFIX/bin/ | ||
- chmod +x $PREFIX/bin/CAMPneu.nf $PREFIX/bin/nextflow.config | ||
|
||
run_exports: | ||
- {{ pin_subpackage(name, max_pin='x') }} | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
- skip: True # [win] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be part of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please do not resolve conversations if you haven't addressed the issue. |
||
|
||
host: | ||
- python | ||
- pip | ||
|
||
run: | ||
- nextflow | ||
- python <3.11 | ||
- minimap2==2.28 | ||
- samtools | ||
- fastp | ||
- fastANI | ||
- bcftools | ||
- kraken2 | ||
- unicycler | ||
- freebayes | ||
- jq | ||
|
||
mmkadam marked this conversation as resolved.
Show resolved
Hide resolved
|
||
test: | ||
commands: | ||
- CAMPneu.nf --help | ||
mmkadam marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
about: | ||
home: "https://github.com/{{ user }}/{{ name }}" | ||
license: MIT | ||
mmkadam marked this conversation as resolved.
Show resolved
Hide resolved
|
||
license_family: MIT | ||
license_file: LICENSE | ||
summary: "CAMPneu is a scalable and reproducible Nextflow pipeline designed for bioinformatics analysis, targeting Illumina paired-end sequence data. Its primary objectives are to identify Mycoplasma pneumoniae species, classify its subtype (type 1 or type 2), and detect known SNPs associated with macrolide resistance in the sample." | ||
dev_url: "https://github.com/{{ user }}/{{ name }}" | ||
doc_url: "https://github.com/appliedbinf/campneu/blob/{{ version }}/README.md" |
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.
missing
run_exports