File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737 run : cmake --build build -j4
3838
3939 - name : run
40- run : ./build/aligncount --help
40+ run : ./build/aligncount_cpp --help
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ RUN pip3 install pytest
6767RUN pytest -q /app/tests/python/test_cli.py
6868
6969# 4) Verify the binaries are on PATH (just a check; you can remove)
70- RUN which Aligncount && which aligncount_wrapper
70+ RUN which aligncount_cpp && which aligncount
7171
7272# Final entrypoint: run the Python wrapper by default
73- ENTRYPOINT ["aligncount_wrapper " ]
73+ ENTRYPOINT ["aligncount " ]
7474CMD ["--help" ]
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ Template Repo Combines:
2020 - Remember to rename the ` include/aligncount ` directory to use your project's lowercase name and update all relevant ` #include ` s accordingly.
2121 - Replace instances of ALIGNCOUNT_VERSION with ` [YOUR_PROJECT_NAME]_VERSION `
2222 - Set the name of the C++ executable (e.g. aligncount_cpp) to your liking in ` cpp/standalone/CMakeLists.txt `
23+ - Set the expected name of the C++ executable in the ` cpp_standalone.yml ` workflow.
24+ - Set the expected name of the C++ executable and python wrapper in ` DockerFile ` .
2325- Replace the source files with your own
2426- Set GitHub action secrets for:
2527 - ANACONDA_TOKEN
You can’t perform that action at this time.
0 commit comments