-
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
Create FC-Virus #51578
Create FC-Virus #51578
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,33 @@ | ||||||||||||
package: | ||||||||||||
name: FC-Virus | ||||||||||||
version: "1.0.0" | ||||||||||||
|
||||||||||||
source: | ||||||||||||
git_url: https://github.com/qdu-bioinfo/FC-Virus | ||||||||||||
git_tag: main | ||||||||||||
sha256: a5c91ea315dc7b64b75986128d97c08522aae332cb640fd2c115cc379b4adc51 | ||||||||||||
|
||||||||||||
build: | ||||||||||||
number: 0 | ||||||||||||
skip: true | ||||||||||||
Comment on lines
+10
to
+12
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. Remove skip: true to enable package building. The build:
number: 0
- skip: true 📝 Committable suggestion
Suggested change
|
||||||||||||
|
||||||||||||
requirements: | ||||||||||||
build: | ||||||||||||
- gcc | ||||||||||||
- gxx_linux-64 | ||||||||||||
- make | ||||||||||||
- boost | ||||||||||||
run: | ||||||||||||
- gcc | ||||||||||||
- boost | ||||||||||||
Comment on lines
+14
to
+22
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. Update dependency specifications for better compatibility. Several improvements needed in the requirements section:
requirements:
build:
- - gcc
- - gxx_linux-64
+ - {{ compiler('c') }}
+ - {{ compiler('cxx') }}
- make
- - boost
+ - boost >=1.70.0
run:
- - gcc
+ - libgcc-ng # [linux]
- boost Also add platform skip configuration: build:
number: 0
skip: true # [win] |
||||||||||||
|
||||||||||||
about: | ||||||||||||
home: https://github.com/qdu-bioinfo/FC-Virus | ||||||||||||
license: MIT | ||||||||||||
summary: "Accurate Assembly of Full-length Consensus for Viral Quasispecies" | ||||||||||||
run_exports: | ||||||||||||
- boost >=1.70.0 | ||||||||||||
Comment on lines
+24
to
+29
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. Restructure metadata and add license file specification.
about:
home: https://github.com/qdu-bioinfo/FC-Virus
license: MIT
+ license_file: LICENSE
summary: "Accurate Assembly of Full-length Consensus for Viral Quasispecies"
- run_exports:
- - boost >=1.70.0
build:
number: 0
+ run_exports:
+ - boost >=1.70.0
|
||||||||||||
|
||||||||||||
test: | ||||||||||||
commands: | ||||||||||||
- ./bin/FC-Virus --help | ||||||||||||
Comment on lines
+31
to
+33
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. Improve test configuration for better validation. Current test configuration has several issues:
test:
commands:
- - ./bin/FC-Virus --help
+ - FC-Virus --help
+ - FC-Virus --version | grep "1.0.0"
+ requires:
+ - boost >=1.70.0
|
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.
Use version tag instead of main branch for reproducibility.
Using
git_tag: main
is problematic as it:Consider using a specific version tag (e.g.,
v1.0.0
) that corresponds to the package version.