FedGWAS 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fedgwas-0.3.1/.flwr/.gitignore +1 -0
- fedgwas-0.3.1/.github/workflows/deploy-docs.yml +61 -0
- fedgwas-0.3.1/.github/workflows/publish-pypi.yml +57 -0
- fedgwas-0.3.1/.gitignore +139 -0
- fedgwas-0.3.1/CURRENT_VERSION.md +639 -0
- fedgwas-0.3.1/LICENSE +21 -0
- fedgwas-0.3.1/PKG-INFO +276 -0
- fedgwas-0.3.1/README.md +235 -0
- fedgwas-0.3.1/RELEASE.md +141 -0
- fedgwas-0.3.1/cluster_deployment/README.md +90 -0
- fedgwas-0.3.1/cluster_deployment/docs/CLUSTER_USER_GUIDE.md +631 -0
- fedgwas-0.3.1/cluster_deployment/scripts/check-cluster-clock-skew.sh +66 -0
- fedgwas-0.3.1/cluster_deployment/scripts/cluster-config-template.sh +8 -0
- fedgwas-0.3.1/cluster_deployment/scripts/cluster-diagnose.sh +100 -0
- fedgwas-0.3.1/cluster_deployment/scripts/cluster-run-app.sh +143 -0
- fedgwas-0.3.1/cluster_deployment/scripts/cluster-start-client.sh +141 -0
- fedgwas-0.3.1/cluster_deployment/scripts/cluster-start-server.sh +44 -0
- fedgwas-0.3.1/cluster_deployment/scripts/cluster-status.sh +16 -0
- fedgwas-0.3.1/cluster_deployment/scripts/cluster-stop-all.sh +15 -0
- fedgwas-0.3.1/cluster_deployment/scripts/cluster-verify-data.sh +91 -0
- fedgwas-0.3.1/cluster_deployment/scripts/download-flwr-wheels.sh +22 -0
- fedgwas-0.3.1/cluster_deployment/scripts/setup-cluster-node.sh +189 -0
- fedgwas-0.3.1/configs/config.yaml +36 -0
- fedgwas-0.3.1/configs/config_template.yaml +36 -0
- fedgwas-0.3.1/docs/experiments/overview.md +70 -0
- fedgwas-0.3.1/docs/experiments/runner.md +76 -0
- fedgwas-0.3.1/docs/getting-started/configuration.md +111 -0
- fedgwas-0.3.1/docs/getting-started/deployment.md +92 -0
- fedgwas-0.3.1/docs/getting-started/installation.md +82 -0
- fedgwas-0.3.1/docs/getting-started/simulation.md +68 -0
- fedgwas-0.3.1/docs/images/Architecture.png +0 -0
- fedgwas-0.3.1/docs/intro.md +42 -0
- fedgwas-0.3.1/docs/modules/association.md +35 -0
- fedgwas-0.3.1/docs/modules/client.md +44 -0
- fedgwas-0.3.1/docs/modules/kinship.md +36 -0
- fedgwas-0.3.1/docs/modules/quality-control.md +44 -0
- fedgwas-0.3.1/docs/modules/server.md +49 -0
- fedgwas-0.3.1/docs/pipeline/architecture.md +75 -0
- fedgwas-0.3.1/docs/pipeline/privacy-masking.md +39 -0
- fedgwas-0.3.1/docs/pipeline/workflow.md +55 -0
- fedgwas-0.3.1/docs/troubleshooting.md +67 -0
- fedgwas-0.3.1/experiments/README.md +198 -0
- fedgwas-0.3.1/experiments/correctness/tiny_even/README.md +90 -0
- fedgwas-0.3.1/experiments/correctness/tiny_even/config.yaml +63 -0
- fedgwas-0.3.1/experiments/correctness/tiny_even/configs/center_1/config.yaml +43 -0
- fedgwas-0.3.1/experiments/correctness/tiny_even/configs/center_2/config.yaml +43 -0
- fedgwas-0.3.1/experiments/correctness/tiny_even/configs/server/config.yaml +3 -0
- fedgwas-0.3.1/experiments/performance/medium_even/README.md +87 -0
- fedgwas-0.3.1/experiments/performance/medium_even/config.yaml +60 -0
- fedgwas-0.3.1/experiments/performance/medium_even/configs/center_1/config.yaml +41 -0
- fedgwas-0.3.1/experiments/performance/medium_even/configs/center_2/config.yaml +41 -0
- fedgwas-0.3.1/experiments/performance/medium_even/configs/server/config.yaml +3 -0
- fedgwas-0.3.1/experiments/performance/scales.yaml +27 -0
- fedgwas-0.3.1/experiments/performance/small_even/README.md +57 -0
- fedgwas-0.3.1/experiments/performance/small_even/config.yaml +60 -0
- fedgwas-0.3.1/experiments/performance/small_even/configs/center_1/config.yaml +43 -0
- fedgwas-0.3.1/experiments/performance/small_even/configs/center_2/config.yaml +43 -0
- fedgwas-0.3.1/experiments/performance/small_even/configs/server/config.yaml +3 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/EXPERIMENT_STATUS.md +68 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/README.md +245 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/config.yaml +23 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/configs/center_1/config.yaml +41 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/configs/center_2/config.yaml +41 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/configs/server/config.yaml +3 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/download_subset.sh +95 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/PLOT_COMPARISON.md +73 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/README.md +81 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/VISUALIZATION_GUIDE.md +73 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/baseline_validation_report.md +117 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/figures/king_correlation.png +0 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/figures/lr_correlation.png +0 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/figures/manhattan_baseline.png +0 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/figures/manhattan_comparison.png +0 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/figures/manhattan_federated.png +0 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/figures/qq_baseline.png +0 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/figures/qq_federated.png +0 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/manuscript_sections.md +39 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/summary.json +31 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/tables/coverage_table.md +9 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/tables/coverage_table.tex +16 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/tables/filtering_table.md +9 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/tables/filtering_table.tex +15 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/tables/king_table.md +9 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/tables/lr_table.md +6 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/tables/qc_table.md +9 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/tables/qc_table.tex +12 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/threshold_analysis/RECOMMENDATIONS.md +60 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/threshold_analysis/threshold_sensitivity_5e-8.png +0 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/threshold_analysis/threshold_sensitivity_results.csv +41 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/manuscript/threshold_analysis/threshold_sensitivity_summary.md +27 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/run_evaluation.sh +60 -0
- fedgwas-0.3.1/experiments/real_world/1000genomes/run_experiment.sh +31 -0
- fedgwas-0.3.1/experiments/real_world/README.md +231 -0
- fedgwas-0.3.1/experiments/real_world/phenotype_generation/README.md +124 -0
- fedgwas-0.3.1/experiments/real_world/phenotype_generation/__init__.py +19 -0
- fedgwas-0.3.1/experiments/real_world/phenotype_generation/generate_phenotypes.py +312 -0
- fedgwas-0.3.1/experiments/real_world/phenotype_generation/models.py +360 -0
- fedgwas-0.3.1/experiments/tools/analyze_threshold_sensitivity.py +288 -0
- fedgwas-0.3.1/experiments/tools/apply_run_retention.py +60 -0
- fedgwas-0.3.1/experiments/tools/collect_run_metrics.py +195 -0
- fedgwas-0.3.1/experiments/tools/evaluation/README.md +79 -0
- fedgwas-0.3.1/experiments/tools/evaluation/collect_real_world_results.py +233 -0
- fedgwas-0.3.1/experiments/tools/evaluation/evaluate_all.py +200 -0
- fedgwas-0.3.1/experiments/tools/evaluation/king/analyze_king_partial_debug.py +401 -0
- fedgwas-0.3.1/experiments/tools/evaluation/king/compare_king_from_accumulator.py +314 -0
- fedgwas-0.3.1/experiments/tools/evaluation/lr/lr_evaluator.py +813 -0
- fedgwas-0.3.1/experiments/tools/evaluation/lr/sf_gwas_comparison.py +411 -0
- fedgwas-0.3.1/experiments/tools/evaluation/metrics_collector.py +429 -0
- fedgwas-0.3.1/experiments/tools/evaluation/qc/investigate_mismatches.py +315 -0
- fedgwas-0.3.1/experiments/tools/evaluation/qc/qc_evaluator.py +266 -0
- fedgwas-0.3.1/experiments/tools/filter_multiallelic.py +400 -0
- fedgwas-0.3.1/experiments/tools/fix_snp_ids.py +60 -0
- fedgwas-0.3.1/experiments/tools/generate_baseline.py +566 -0
- fedgwas-0.3.1/experiments/tools/generate_manuscript_materials.py +1455 -0
- fedgwas-0.3.1/experiments/tools/setup_real_world_experiment.py +301 -0
- fedgwas-0.3.1/experiments/tools/summarize_scalability_table.py +112 -0
- fedgwas-0.3.1/pipeline/__init__.py +0 -0
- fedgwas-0.3.1/pipeline/client_app.py +1302 -0
- fedgwas-0.3.1/pipeline/clients/__init__.py +3 -0
- fedgwas-0.3.1/pipeline/clients/base_client.py +737 -0
- fedgwas-0.3.1/pipeline/clients/c2c_payloads.py +38 -0
- fedgwas-0.3.1/pipeline/clients/client_qc_aggregator.py +184 -0
- fedgwas-0.3.1/pipeline/clients/client_to_client.py +152 -0
- fedgwas-0.3.1/pipeline/clients/config.yaml +26 -0
- fedgwas-0.3.1/pipeline/clients/data_loder.py +189 -0
- fedgwas-0.3.1/pipeline/clients/flwr_config.py +29 -0
- fedgwas-0.3.1/pipeline/clients/iterative_king.py +944 -0
- fedgwas-0.3.1/pipeline/clients/iterative_lr.py +472 -0
- fedgwas-0.3.1/pipeline/clients/local_qc.py +275 -0
- fedgwas-0.3.1/pipeline/clients/logger_manager.py +106 -0
- fedgwas-0.3.1/pipeline/clients/lr_privacy.py +61 -0
- fedgwas-0.3.1/pipeline/clients/seed_sync.py +203 -0
- fedgwas-0.3.1/pipeline/server/aggregator_king.py +456 -0
- fedgwas-0.3.1/pipeline/server/aggregator_lr.py +454 -0
- fedgwas-0.3.1/pipeline/server/prg_masking.py +197 -0
- fedgwas-0.3.1/pipeline/server/strategy_strict.py +513 -0
- fedgwas-0.3.1/pipeline/server_app.py +168 -0
- fedgwas-0.3.1/pipeline/utils/client_data_loader.py +7 -0
- fedgwas-0.3.1/pipeline/utils/monitoring_config.py +104 -0
- fedgwas-0.3.1/pipeline/utils/performance/__init__.py +17 -0
- fedgwas-0.3.1/pipeline/utils/performance/monitoring_runtime.py +215 -0
- fedgwas-0.3.1/pipeline/utils/performance/network_monitor.py +368 -0
- fedgwas-0.3.1/pipeline/utils/performance/performance_monitoring.py +526 -0
- fedgwas-0.3.1/pipeline/utils/retention_config.py +124 -0
- fedgwas-0.3.1/pipeline/utils/run_retention.py +272 -0
- fedgwas-0.3.1/plink/plink_linux/LICENSE +674 -0
- fedgwas-0.3.1/plink/plink_linux/plink +0 -0
- fedgwas-0.3.1/plink/plink_linux/plink2 +0 -0
- fedgwas-0.3.1/plink/plink_linux/prettify +0 -0
- fedgwas-0.3.1/plink/plink_linux/toy.map +2 -0
- fedgwas-0.3.1/plink/plink_linux/toy.ped +2 -0
- fedgwas-0.3.1/plink/plink_mac/LICENSE +674 -0
- fedgwas-0.3.1/plink/plink_mac/plink +0 -0
- fedgwas-0.3.1/plink/plink_mac/plink2 +0 -0
- fedgwas-0.3.1/plink/plink_mac/prettify +0 -0
- fedgwas-0.3.1/plink/plink_mac/toy.map +2 -0
- fedgwas-0.3.1/plink/plink_mac/toy.ped +2 -0
- fedgwas-0.3.1/plink/plink_win/LICENSE +674 -0
- fedgwas-0.3.1/plink/plink_win/plink.exe +0 -0
- fedgwas-0.3.1/plink/plink_win/prettify.exe +0 -0
- fedgwas-0.3.1/plink/plink_win/toy.map +2 -0
- fedgwas-0.3.1/plink/plink_win/toy.ped +2 -0
- fedgwas-0.3.1/pyproject.toml +89 -0
- fedgwas-0.3.1/tests/test_association.py +47 -0
- fedgwas-0.3.1/tests/test_king_federated_unit.py +216 -0
- fedgwas-0.3.1/tests/test_kinship.py +86 -0
- fedgwas-0.3.1/tests/test_monitoring_config.py +18 -0
- fedgwas-0.3.1/tests/test_monitoring_runtime.py +31 -0
- fedgwas-0.3.1/tests/test_performance_monitor_append.py +32 -0
- fedgwas-0.3.1/tests/test_prg_masking.py +242 -0
- fedgwas-0.3.1/tests/test_qc.py +47 -0
- fedgwas-0.3.1/tests/test_quality_control.py +87 -0
- fedgwas-0.3.1/tests/test_reader.py +36 -0
- fedgwas-0.3.1/tests/test_run_retention.py +46 -0
- fedgwas-0.3.1/tests/test_synthetic_data.py +455 -0
- fedgwas-0.3.1/tests/test_visualization.py +57 -0
- fedgwas-0.3.1/tests/test_visualization_comprehensive.py +395 -0
- fedgwas-0.3.1/uv.lock +2266 -0
- fedgwas-0.3.1/website/docusaurus.config.js +108 -0
- fedgwas-0.3.1/website/package-lock.json +17506 -0
- fedgwas-0.3.1/website/package.json +26 -0
- fedgwas-0.3.1/website/sidebars.js +48 -0
- fedgwas-0.3.1/website/src/css/custom.css +62 -0
- fedgwas-0.3.1/website/src/pages/index.js +155 -0
- fedgwas-0.3.1/website/src/pages/index.module.css +221 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.credentials
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
name: Deploy documentation
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- '*'
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
pages: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
14
|
+
concurrency:
|
|
15
|
+
group: github-pages
|
|
16
|
+
cancel-in-progress: false
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
build:
|
|
20
|
+
name: Build Docusaurus site
|
|
21
|
+
runs-on: ubuntu-latest
|
|
22
|
+
|
|
23
|
+
steps:
|
|
24
|
+
- name: Checkout
|
|
25
|
+
uses: actions/checkout@v4
|
|
26
|
+
|
|
27
|
+
- name: Set up Node.js
|
|
28
|
+
uses: actions/setup-node@v4
|
|
29
|
+
with:
|
|
30
|
+
node-version: 20
|
|
31
|
+
cache: npm
|
|
32
|
+
cache-dependency-path: website/package-lock.json
|
|
33
|
+
|
|
34
|
+
- name: Install dependencies
|
|
35
|
+
working-directory: website
|
|
36
|
+
run: npm ci
|
|
37
|
+
|
|
38
|
+
- name: Build documentation
|
|
39
|
+
working-directory: website
|
|
40
|
+
run: npm run build
|
|
41
|
+
|
|
42
|
+
- name: Configure GitHub Pages
|
|
43
|
+
uses: actions/configure-pages@v5
|
|
44
|
+
|
|
45
|
+
- name: Upload Pages artifact
|
|
46
|
+
uses: actions/upload-pages-artifact@v3
|
|
47
|
+
with:
|
|
48
|
+
path: website/build
|
|
49
|
+
|
|
50
|
+
deploy:
|
|
51
|
+
name: Deploy to GitHub Pages
|
|
52
|
+
needs: build
|
|
53
|
+
runs-on: ubuntu-latest
|
|
54
|
+
environment:
|
|
55
|
+
name: github-pages
|
|
56
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
57
|
+
|
|
58
|
+
steps:
|
|
59
|
+
- name: Deploy
|
|
60
|
+
id: deployment
|
|
61
|
+
uses: actions/deploy-pages@v4
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
name: Publish Python package
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build:
|
|
12
|
+
name: Build distribution
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout
|
|
17
|
+
uses: actions/checkout@v4
|
|
18
|
+
|
|
19
|
+
- name: Set up Python
|
|
20
|
+
uses: actions/setup-python@v5
|
|
21
|
+
with:
|
|
22
|
+
python-version: "3.11"
|
|
23
|
+
|
|
24
|
+
- name: Install build tools
|
|
25
|
+
run: python -m pip install --upgrade build twine
|
|
26
|
+
|
|
27
|
+
- name: Build distributions
|
|
28
|
+
run: python -m build
|
|
29
|
+
|
|
30
|
+
- name: Check distributions
|
|
31
|
+
run: python -m twine check dist/*
|
|
32
|
+
|
|
33
|
+
- name: Upload distributions
|
|
34
|
+
uses: actions/upload-artifact@v4
|
|
35
|
+
with:
|
|
36
|
+
name: python-package-distributions
|
|
37
|
+
path: dist/
|
|
38
|
+
|
|
39
|
+
publish:
|
|
40
|
+
name: Publish to PyPI
|
|
41
|
+
needs: build
|
|
42
|
+
runs-on: ubuntu-latest
|
|
43
|
+
environment:
|
|
44
|
+
name: pypi
|
|
45
|
+
url: https://pypi.org/project/FedGWAS/
|
|
46
|
+
permissions:
|
|
47
|
+
id-token: write
|
|
48
|
+
|
|
49
|
+
steps:
|
|
50
|
+
- name: Download distributions
|
|
51
|
+
uses: actions/download-artifact@v4
|
|
52
|
+
with:
|
|
53
|
+
name: python-package-distributions
|
|
54
|
+
path: dist/
|
|
55
|
+
|
|
56
|
+
- name: Publish distributions to PyPI
|
|
57
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
fedgwas-0.3.1/.gitignore
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
.venv
|
|
2
|
+
dist/
|
|
3
|
+
sdist/
|
|
4
|
+
**/__pycache__/
|
|
5
|
+
.pytest_cache/
|
|
6
|
+
*.pyc
|
|
7
|
+
.mypy_cache/
|
|
8
|
+
website/.docusaurus/
|
|
9
|
+
|
|
10
|
+
# Data
|
|
11
|
+
user_data/
|
|
12
|
+
|
|
13
|
+
# Logs
|
|
14
|
+
logs
|
|
15
|
+
npm-debug.log*
|
|
16
|
+
yarn-debug.log*
|
|
17
|
+
yarn-error.log*
|
|
18
|
+
dev-debug.log
|
|
19
|
+
|
|
20
|
+
# Dependency directories
|
|
21
|
+
website/node_modules/
|
|
22
|
+
website/build/
|
|
23
|
+
|
|
24
|
+
# Environment variables
|
|
25
|
+
.env
|
|
26
|
+
|
|
27
|
+
# Editor directories and files
|
|
28
|
+
.idea
|
|
29
|
+
.vscode
|
|
30
|
+
*.suo
|
|
31
|
+
*.ntvs*
|
|
32
|
+
*.njsproj
|
|
33
|
+
*.sln
|
|
34
|
+
*.sw?
|
|
35
|
+
|
|
36
|
+
# OS specific
|
|
37
|
+
.DS_Store
|
|
38
|
+
**/.DS_Store
|
|
39
|
+
|
|
40
|
+
# Legacy/archived directories
|
|
41
|
+
archived/
|
|
42
|
+
bin/
|
|
43
|
+
centers/
|
|
44
|
+
data/
|
|
45
|
+
|
|
46
|
+
# Unused / local-only pipeline paths
|
|
47
|
+
pipeline/exerpiements.md
|
|
48
|
+
pipeline/experiments.md
|
|
49
|
+
pipeline/simulation/
|
|
50
|
+
pipeline/visualization_archived/
|
|
51
|
+
pipeline/server/strategy.py
|
|
52
|
+
pipeline/server/strategy_new.py
|
|
53
|
+
pipeline/server/aggregator_qc.py
|
|
54
|
+
pipeline/utils/bloom_filter.py
|
|
55
|
+
|
|
56
|
+
# Redundant/outdated documentation
|
|
57
|
+
Readme_pipeline.md
|
|
58
|
+
EXPERIMENT_RUNNER_README.md
|
|
59
|
+
prd/
|
|
60
|
+
.pre-commit-config.yaml
|
|
61
|
+
!cluster_deployment/docs/
|
|
62
|
+
!cluster_deployment/docs/**
|
|
63
|
+
|
|
64
|
+
# Docker (local workflow only; cluster deployment is under cluster_deployment/)
|
|
65
|
+
docker/
|
|
66
|
+
.dockerignore
|
|
67
|
+
|
|
68
|
+
# Performance manuscript drafts (local only; configs stay in repo)
|
|
69
|
+
experiments/performance/README.md
|
|
70
|
+
experiments/performance/appendix_sections.md
|
|
71
|
+
experiments/performance/appendix_table.md
|
|
72
|
+
experiments/performance/appendix_table.tex
|
|
73
|
+
experiments/performance/manuscript_sections.md
|
|
74
|
+
|
|
75
|
+
# Local notes, reports, and archives (not shipped)
|
|
76
|
+
ISSUES_REPORT.md
|
|
77
|
+
ISSUES_REPORT_UPDATED.md
|
|
78
|
+
plan.md
|
|
79
|
+
experiments.docx
|
|
80
|
+
InfoSummit_kinship.pdf
|
|
81
|
+
mkdocs.yml
|
|
82
|
+
pipeline.pdf
|
|
83
|
+
pipeline.zip
|
|
84
|
+
plink.zip
|
|
85
|
+
results/
|
|
86
|
+
|
|
87
|
+
# Experiment run outputs and synthetic data artifacts
|
|
88
|
+
experiments/**/results/
|
|
89
|
+
experiments/**/results_*/
|
|
90
|
+
experiments/*/*/results/
|
|
91
|
+
experiments/**/data/**/*.bed
|
|
92
|
+
experiments/**/data/**/*.bim
|
|
93
|
+
experiments/**/data/**/*.fam
|
|
94
|
+
experiments/**/data/**/*.log
|
|
95
|
+
experiments/**/data/**/*.kin0
|
|
96
|
+
experiments/**/data/**/*.assoc*
|
|
97
|
+
experiments/**/data/**/*.genome
|
|
98
|
+
experiments/**/data/**/*.hwe
|
|
99
|
+
experiments/**/data/**/*.imiss
|
|
100
|
+
experiments/**/data/**/*.lmiss
|
|
101
|
+
experiments/**/data/**/*.frq
|
|
102
|
+
experiments/**/intermediate/
|
|
103
|
+
**/__pycache__/
|
|
104
|
+
|
|
105
|
+
# Task / cluster bundles
|
|
106
|
+
fedgwas-cluster.tar.gz
|
|
107
|
+
cluster_deployment/wheels/
|
|
108
|
+
|
|
109
|
+
# Log files
|
|
110
|
+
*.log
|
|
111
|
+
**/*.log
|
|
112
|
+
|
|
113
|
+
# PLINK output files
|
|
114
|
+
*.bed
|
|
115
|
+
*.bim
|
|
116
|
+
*.fam
|
|
117
|
+
*.kin0
|
|
118
|
+
*.assoc*
|
|
119
|
+
*.genome
|
|
120
|
+
*.hwe
|
|
121
|
+
*.imiss
|
|
122
|
+
*.lmiss
|
|
123
|
+
*.frq
|
|
124
|
+
|
|
125
|
+
# Large data files (duplicate patterns for safety)
|
|
126
|
+
*.bed
|
|
127
|
+
*.bim
|
|
128
|
+
*.fam
|
|
129
|
+
|
|
130
|
+
# claude
|
|
131
|
+
.claude/
|
|
132
|
+
.venv/
|
|
133
|
+
claude.md
|
|
134
|
+
.windsurfrules
|
|
135
|
+
README-task-manager.md
|
|
136
|
+
.env.example
|
|
137
|
+
/scripts/
|
|
138
|
+
.cursor/*
|
|
139
|
+
.test_scenario_a.py
|