Skip to content

Commit b7acf87

Browse files
New strategies (#172)
* remove code that was migrated to targetedEstimation * add sample_ids filtering on prepare confounders * include snp filtering * remove R from CI deps * add workflow dispatch to branch * convert sample_ids to strings for BGEN/BED compat * remove compulsory option * remove geneatlas phenotypes based preparation * add tmle_inputs * update to account for both binary and continuous phenotypes * rename package and start to work on extra treatments * update project * more tests * maybe asb mode * need to test asb mode * add some test * add some tests for asb trans mode * more tests and cleanup dir * add more tests * add YAML deps * cleanup repo * fix targets section * update badge * update badges * update argument syntax of script * add new parameter filename * add no influence curve support to summary (#170) * SAMPLE_IDS as strings * Project.toml only (no Manifest.toml) * add work in progress * work in progress * add work in progress * add validated_params method * rewrite of strategies * start to work on ate param for actors * update sample_ids to traits * update script * add ATE generation * update project * update project * update script * update dockerfile * update manifest * update dockerfile julai version * fix Manifest * update docker root dir name * add load package to docker image * temporarily remove sieve tests * fix script arg table * try update JULIA_DEPOT_PATH * add verbosity and deal with missing estimates * add restore slash method * add push_sieveless methof for missing result * fix types of output
1 parent 29e7226 commit b7acf87

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+3289
-5519
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,13 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
version:
13-
- '1.7'
13+
- '1.8'
1414
os:
1515
- ubuntu-latest
1616
arch:
1717
- x64
1818
steps:
1919
- uses: actions/checkout@v2
20-
- name: Install bunch of things
21-
run: sudo apt-get install -y libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev build-essential libxml2-dev libssl-dev
22-
- name: Setup R
23-
uses: r-lib/actions/setup-r@v1
24-
with:
25-
r-version: ${{ matrix.R }}
26-
- name: Install R dependencies
27-
run: |
28-
install.packages("devtools", repos="http://cran.us.r-project.org")
29-
require(devtools)
30-
install_version("hal9001", version = "0.4.1", repos = "http://cran.us.r-project.org")
31-
shell: Rscript {0}
32-
- name: Set R_HOME
33-
run: echo "R_HOME=$(R RHOME)" >> $GITHUB_ENV
34-
- name: Set LD_LIBRARY
35-
run: echo "LD_LIBRARY_PATH=$R_HOME/lib" >> $GITHUB_ENV
3620
- uses: julia-actions/setup-julia@v1
3721
with:
3822
version: ${{ matrix.version }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ docs/site/
2222
# It records a fixed state of all packages used by the project. As such, it should not be
2323
# committed for packages, but should be committed for applications that require a static
2424
# environment.
25+
Manifest.toml
2526
test/Manifest.toml
2627

28+
2729
# Develop dependencies
2830
dev/
2931

0 commit comments

Comments
 (0)