-
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 aarch64 control-freec (debugging) #52018
Changes from 8 commits
ff580bd
722fc3e
84456c3
f274933
719445e
41fce3d
70f0502
c947991
ff33c95
3a043fc
25eb4ff
71da694
871e5a8
d37745f
4b4b35e
3acab93
83f13b8
31042aa
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 | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -14,7 +14,7 @@ source: | |||||||||
- perl_shebang.patch | ||||||||||
|
||||||||||
build: | ||||||||||
number: 0 | ||||||||||
number: 1 | ||||||||||
run_exports: | ||||||||||
- {{ pin_subpackage('control-freec', max_pin="x") }} | ||||||||||
|
||||||||||
|
@@ -30,6 +30,8 @@ requirements: | |||||||||
|
||||||||||
test: | ||||||||||
commands: | ||||||||||
- ls -l | ||||||||||
- ls -l bin | ||||||||||
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. 🛠️ Refactor suggestion Remove debugging directory listing commands The test:
commands:
- - ls -l
- - ls -l bin
- freec
- freec2bed.pl 📝 Committable suggestion
Suggested change
|
||||||||||
- freec | ||||||||||
- freec2bed.pl | ||||||||||
- freec2circos.pl | ||||||||||
|
@@ -42,7 +44,8 @@ test: | |||||||||
|
||||||||||
about: | ||||||||||
home: https://github.com/BoevaLab/FREEC | ||||||||||
license: GPL (>=2) | ||||||||||
license: GPL-2.0-or-later | ||||||||||
license_family: GPL2 | ||||||||||
summary: | | ||||||||||
Copy number and genotype annotation from whole genome and whole exome | ||||||||||
sequencing data. | ||||||||||
|
@@ -54,4 +57,6 @@ extra: | |||||||||
like e.g. freec2bed.pl and freec2circos.pl (see homepage) are available in the | ||||||||||
command line as well. | ||||||||||
identifiers: | ||||||||||
- biotools:freec | ||||||||||
- biotools:freec | ||||||||||
additional-platforms: | ||||||||||
- linux-aarch64 |
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
Add shell safety flags and plan debug mode cleanup.
While
set -x
is helpful for debugging ARM builds, consider:📝 Committable suggestion