Skip to content

Commit c285f65

Browse files
committed
2 parents 8b0384a + b23c0e8 commit c285f65

File tree

5 files changed

+67
-11
lines changed

5 files changed

+67
-11
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
version:
21+
- "1"
2122
- "1.6"
2223
os:
2324
- ubuntu-latest

.github/workflows/JuliaNightly.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
#source: https://github.com/invenia/PkgTemplates.jl/blob/master/.github/workflows/JuliaNightly.yml
3+
name: JuliaNightly
4+
# Nightly Scheduled Julia Nightly Run
5+
on:
6+
schedule:
7+
- cron: '0 2 * * *' # Daily at 2 AM UTC (8 PM CST)
8+
jobs:
9+
test:
10+
name: Julia Nightly - Ubuntu - x64
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
os:
16+
- ubuntu-latest
17+
- macOS-latest
18+
- windows-latest
19+
arch:
20+
- x64
21+
steps:
22+
- uses: actions/checkout@v2
23+
- uses: julia-actions/setup-julia@v1
24+
with:
25+
version: nightly
26+
- uses: actions/cache@v2
27+
env:
28+
cache-name: julia-nightly-cache-artifacts
29+
with:
30+
path: ~/.julia/artifacts
31+
key: ${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
32+
restore-keys: |
33+
${{ env.cache-name }}-
34+
- uses: julia-actions/julia-buildpkg@latest
35+
- run: |
36+
git config --global user.name Tester
37+
git config --global user.email te@st.er
38+
- uses: julia-actions/julia-runtest@latest
39+
- uses: julia-actions/julia-processcoverage@v1
40+
- uses: codecov/codecov-action@v1
41+
with:
42+
file: lcov.info

.github/workflows/TagBot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
jobs:
8+
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: JuliaRegistries/TagBot@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

Project.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "VarianceComponentModels"
22
uuid = "813005db-34b4-5f71-be9e-1bbf0a1d8f1c"
33
keywords = ["variance components model", "GWAS"]
44
author = ["Hua Zhou <huazhou@ucla.edu>", "OpenMendel Team"]
5-
version = "0.1.1"
5+
version = "0.1.3"
66

77
[deps]
88
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
@@ -13,8 +13,9 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1313
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1414

1515
[compat]
16-
Ipopt = "0.6.5 - 0.7"
16+
Ipopt = "0.6.5 - 0.7, 0.8"
1717
MathProgBase = "0.7"
18+
julia = "1.6"
1819

1920
[extras]
2021
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,19 @@ This package requires Julia v0.7.0 or later, which can be obtained from
1212
https://julialang.org/downloads/ or by building Julia from the sources in the
1313
https://github.com/JuliaLang/julia repository.
1414

15-
The package has not yet been registered and must be installed using the repository location.
16-
Start julia and use the `]` key to switch to the package manager REPL
15+
16+
This package is registered in the default Julia package registry, and can be installed through standard package installation procedure: e.g., running the following code in Julia REPL.
1717
```julia
18-
(v1.2) pkg> add https://github.com/OpenMendel/VarianceComponentModels.jl
18+
using Pkg
19+
pkg"add VarianceComponentModels"
1920
```
20-
Use the backspace key to return to the Julia REPL.
2121

2222
## Citation
2323

2424
If you use [OpenMendel](https://openmendel.github.io) analysis packages in your research, please cite the following reference in the resulting publications:
2525

26-
*Zhou, H., Sinsheimer, J., German, C., Ji, S., Bates, D., Chu, B. B., Keys, K., Kim, J., Ko, S., Mosher, G., Papp, J., Sobel, E., Zhai, J., Zhou, J., and Lange, K. (2020). OPENMENDEL: a cooperative programming project for statistical genetics, Human Genetics, 139(1):61-71.*
27-
28-
<!--- ## Contributing
29-
We welcome contributions to this Open Source project. To contribute, follow this procedure ... --->
26+
*Zhou H, Sinsheimer JS, Bates DM, Chu BB, German CA, Ji SS, Keys KL, Kim J, Ko S, Mosher GD, Papp JC, Sobel EM, Zhai J, Zhou JJ, Lange K. OPENMENDEL: a cooperative programming project for statistical genetics. Hum Genet. 2020 Jan;139(1):61-71. doi: 10.1007/s00439-019-02001-z. Epub 2019 Mar 26. PMID: 30915546; PMCID: [PMC6763373](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6763373/).*
3027

3128
## Acknowledgments
3229

33-
This project is supported by the National Institutes of Health under NIGMS awards R01GM053275 and R25GM103774 and NHGRI award R01HG006139.
30+
This project has been supported by the National Institutes of Health under awards R01GM053275, R01HG006139, R25GM103774, and 1R25HG011845.

0 commit comments

Comments
 (0)