Skip to content

Commit

Permalink
BSD license
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasrausch committed Jan 31, 2020
1 parent e523e4d commit 06f0b0c
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 1,265 deletions.
630 changes: 14 additions & 616 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![Anaconda-Server Badge](https://anaconda.org/bioconda/delly/badges/downloads.svg)](https://anaconda.org/bioconda/delly)
[![Build Status](https://travis-ci.org/dellytools/delly.svg?branch=master)](https://travis-ci.org/dellytools/delly)
[![Docker Build](https://img.shields.io/docker/build/dellytools/delly.svg)](https://hub.docker.com/r/dellytools/delly/)
[![GitHub license](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/dellytools/delly/blob/master/LICENSE)
[![GitHub license](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/dellytools/delly/blob/master/LICENSE)
[![GitHub Releases](https://img.shields.io/github/release/dellytools/delly.svg)](https://github.com/dellytools/delly/releases)
[![GitHub Issues](https://img.shields.io/github/issues/dellytools/delly.svg)](https://github.com/dellytools/delly/issues)

Expand Down Expand Up @@ -147,4 +147,4 @@ Bioinformatics 2012 28: i333-i339.

License
-------
Delly is distributed under the GPLv3. Consult the accompanying [LICENSE](https://github.com/dellytools/delly/blob/master/LICENSE) file for more details.
Delly is distributed under the BSD 3-Clause license. Consult the accompanying [LICENSE](https://github.com/dellytools/delly/blob/master/LICENSE) file for more details.
2 changes: 1 addition & 1 deletion src/delly.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int main(int argc, char **argv) {
return 0;
}
else if ((std::string(argv[1]) == "license") || (std::string(argv[1]) == "--license") || (std::string(argv[1]) == "-l")) {
gplV3();
bsd();
return 0;
}
else if ((std::string(argv[1]) == "call")) {
Expand Down
2 changes: 1 addition & 1 deletion src/dellyLR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ int main(int argc, char **argv) {
return 0;
}
else if ((std::string(argv[1]) == "license") || (std::string(argv[1]) == "--license") || (std::string(argv[1]) == "-l")) {
gplV3();
bsd();
return 0;
}
else if ((std::string(argv[1]) == "call")) {
Expand Down
2 changes: 1 addition & 1 deletion src/dpe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ int main(int argc, char **argv) {
if (vm.count("warranty")) {
displayWarranty();
} else if (vm.count("license")) {
gplV3();
bsd();
} else {
std::cout << "Usage: " << argv[0] << " [OPTIONS] <deldup.bcf>" << std::endl;
std::cout << visible_options << "\n";
Expand Down
Loading

0 comments on commit 06f0b0c

Please sign in to comment.