Skip to content

Commit

Permalink
Minor Improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
smortezah authored Feb 18, 2024
1 parent 6cfe74b commit a824026
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ jobs:
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
- name: Build cryfa
run: cmake --build ${{github.workspace}}/build --parallel 4 --config Release
- name: Print cryfa help
run: ${{github.workspace}}/build/cryfa
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ If you are interested in the topic of "key management", which is to deal with ge
Please cite the followings, if you use Cryfa:

* M. Hosseini, D. Pratas and A.J. Pinho, "Cryfa: a secure encryption tool for genomic data," *Bioinformatics*, vol. 35, no. 1, pp. 146--148, 2018. [DOI: 10.1093/bioinformatics/bty645](https://doi.org/10.1093/bioinformatics/bty645)
* <u>[OPTIONAL]</u> D. Pratas, M. Hosseini and A.J. Pinho, "Cryfa: a tool to compact and encrypt FASTA files," *11'th International Conference on Practical Applications of Computational Biology & Bioinformatics* (PACBB), Springer, June 2017. [DOI: 10.1007/978-3-319-60816-7_37](https://doi.org/10.1007/978-3-319-60816-7_37)
* **[OPTIONAL]** D. Pratas, M. Hosseini and A.J. Pinho, "Cryfa: a tool to compact and encrypt FASTA files," *11'th International Conference on Practical Applications of Computational Biology & Bioinformatics* (PACBB), Springer, June 2017. [DOI: 10.1007/978-3-319-60816-7_37](https://doi.org/10.1007/978-3-319-60816-7_37)

# Codebase

Expand Down
2 changes: 1 addition & 1 deletion src/parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ inline void show_help() {
"the maximum file size supported is 64 GB. For larger files, you "
"can split them, e.g. by \"split\" command, and encrypt each "
"chunk. After the decryption, you can concatenate the chunks, "
"e.g. by \"cat\" command.") << std::endl;
"e.g. by \"cat\" command.", "", 62) << std::endl;

throw EXIT_SUCCESS;
}
Expand Down

0 comments on commit a824026

Please sign in to comment.