-
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
adding RDEVAL #52070
Merged
+179
−0
Merged
adding RDEVAL #52070
Changes from 4 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
674dcc0
initial attempt
e33c5e2
adding make as a dependency
2b072df
new hash
8231e37
adding test
f4652bc
fixing build.sh
2f4e58a
Merge branch 'master' into rdeval
richard-burhans 87296b0
using version with submodules
9bd1425
adding zlib
13e7bd6
updates
ce7037f
update
b1a6e2b
foo
303792e
quote
0ae2fef
u
2d066a0
Merge branch 'master' into rdeval
richard-burhans a401dab
a
5e87326
patch
de1a4fb
zlib
2c7164a
zlib
9ce5806
foo
b5372a1
clean up recipe
mencian b061c2d
clean up patches
mencian 7a51e11
Update build.sh
mencian 340e33a
Merge branch 'master' into rdeval
mencian 5155d5c
add gfalibs patch
mencian 68a3123
Update meta.yaml
mencian a32a8b4
Update meta.yaml
mencian 165854e
add gfalibs patch
mencian 9557f45
edit foo.patch
mencian e758cf8
Update foo.patch
mencian 7b3e888
edit foo.patch
mencian 8e8c1f1
edit foo.patch
mencian 8434782
Update build.sh
mencian 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,27 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -o errexit | ||
set -o nounset | ||
set -o xtrace | ||
|
||
make | ||
|
||
# mkdir -vp "${PREFIX}/bin" | ||
|
||
# Define installation manifest | ||
declare -A files=( | ||
["rdeval"]="0755" | ||
) | ||
|
||
# Install files | ||
for file in "${!files[@]}"; do | ||
if [[ ! -f "$SRC_DIR/$file" ]]; then | ||
echo "Source file $file not found in $SRC_DIR" >&2 | ||
exit 1 | ||
fi | ||
|
||
if ! install -v -m "${files[$file]}" "$SRC_DIR/$file" "$PREFIX/bin/$file"; then | ||
echo "Failed to install $file" >&2 | ||
exit 1 | ||
fi | ||
done |
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,31 @@ | ||
{% set name = "rdeval" %} | ||
{% set version = "0.0.2" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/vgl-hub/{{ name }}/archive/refs/tags/v{{ version }}.zip | ||
sha256: 466ff3dd3f80aa544be4e0992d1d46bbde933279413392cf17a1fe3b6c2fc5be | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('cxx') }} | ||
- make | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage(name|lower, max_pin="x.x") }} | ||
|
||
test: | ||
commands: | ||
- ${PREFIX}/bin/rdeval --help | ||
|
||
about: | ||
home: https://github.com/vgl-hub/{{ name }} | ||
summary: A general purpose, multithreaded read analysis and manipulation tool. | ||
license: MIT | ||
license_file: LICENSE | ||
license_url: https://github.com/vgl-hub/{{ name }}/blob/main/LICENSE | ||
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. 💡 Codebase verification LICENSE file verified and README requires a detailed Description section
🔗 Analysis chainVerify license file and update summary
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Verify license file existence and content
gh api repos/vgl-hub/rdeval/contents/LICENSE --jq '.content' | base64 -d
# Check if there's a more detailed description in README
gh api repos/vgl-hub/rdeval/contents/README.md --jq '.content' | base64 -d | grep -A 5 "^#.*Description"
Length of output: 298 Script: #!/bin/bash
# Verify license file existence and content without using base64
gh api repos/vgl-hub/rdeval/contents/LICENSE --raw
# Check if there's a more detailed description in README
gh api repos/vgl-hub/rdeval/contents/README.md --raw | grep -A 5 "^#.*Description"
Length of output: 2865 Script: #!/bin/bash
# Verify license file existence and content using jq to decode base64
gh api repos/vgl-hub/rdeval/contents/LICENSE --jq '.content | @base64d'
# Check if there's a more detailed description in README using jq to decode and grep for keywords
gh api repos/vgl-hub/rdeval/contents/README.md --jq '.content | @base64d' | grep -A 5 "^#.*Description"
Length of output: 1244 |
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.
🛠️ Refactor suggestion
Enhance test coverage
The current test only verifies that the help command works. Consider adding more comprehensive tests:
Would you like assistance in generating additional test commands based on the tool's functionality?