Skip to content

Commit d069bc4

Browse files
committed
update the sources url
1 parent 59828b3 commit d069bc4

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2018-11-13 Li Jianfeng <lee_jianfeng@sjtu.edu.cn>
2+
3+
* change samtools and htslib source_url t codeload
4+
* add the second source url of gridss
5+
16
2018-11-11 Li Jianfeng <lee_jianfeng@sjtu.edu.cn>
27

38
* improve the sort method of versions

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: BioInstaller
22
Title: Integrator of Bioinformatics Resources
3-
Version: 0.3.6.3000
3+
Version: 0.3.6.3001
44
Authors@R: person("Jianfeng", "Li", email = "lee_jianfeng@sjtu.edu.cn", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2349-208X"))
55
Maintainer: Jianfeng Li <lee_jianfeng@sjtu.edu.cn>
66
Description:

R/versions.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ get.github.version <- function(config) {
1111
}
1212
result <- str_sort(result, numeric = TRUE)
1313
if (!("master" %in% result)) {
14-
result <- c(result, "master")
14+
result <- c("master", result)
1515
}
1616
black_list <- c("vcf-direct-final", "stable2", "stable1", "konnector2-prerelease",
1717
"konnector-prelease", "bc_4.13", "BCM", "st-final", "sgdp")

inst/extdata/config/nongithub/nongithub.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ linux = "make"
485485
mac = "make"
486486

487487
[htslib]
488-
source_url = "https://github.com/samtools/htslib/archive/{{version}}.tar.gz"
488+
source_url = "https://codeload.github.com/samtools/htslib/tar.gz/{{version}}"
489489
use_github_versions = true
490490
after_success = ["ln -s htslib/* ./; echo successful!"]
491491
make_dir = ["./"]
@@ -496,7 +496,7 @@ linux = ["autoheader; autoconf; ./configure --prefix={{destdir}}; make;", " make
496496
mac = ["autoheader; autoconf; ./configure --prefix={{destdir}}; make;", " make install"]
497497

498498
[samtools]
499-
source_url = "https://github.com/samtools/samtools/archive/{{version}}.tar.gz"
499+
source_url = "https://codeload.github.com/samtools/samtools/tar.gz/{{version}}"
500500
use_github_versions = true
501501
dependence = ["htslib"]
502502
dependence_version = ["{{version}}"]
@@ -660,7 +660,8 @@ win = ["ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/{{version}}/ncbi-bla
660660
"ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/{{version}}/ncbi-blast-{{version}}+-win64.exe"]
661661

662662
[gridss]
663-
source_url = "https://github.com/PapenfussLab/gridss/releases/download/{{version}}/gridss-@>@str_replace('{{version}}', 'v', '')@<@-jar-with-dependencies.jar"
663+
source_url = ["https://github.com/PapenfussLab/gridss/releases/download/{{version}}/gridss-@>@str_replace('{{version}}', 'v', '')@<@-jar-with-dependencies.jar",
664+
"https://github.com/PapenfussLab/gridss/releases/download/{{version}}/gridss-@>@str_replace('{{version}}', 'v', '')@<@-gridss-jar-with-dependencies.jar"]
664665
use_github_versions = true
665666
[gridss.install]
666667
linux = "mkdir -p {{destdir}}/bin; cp {{download.dir}}/*.jar {{destdir}}/bin"

0 commit comments

Comments
 (0)