Skip to content

Commit

Permalink
Update gitignore to add config JSONs to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
rklocke committed Dec 17, 2024
1 parent 6d92763 commit 8177b82
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@
*.txt
.env
venv/
__pycache__/
__pycache__/
!CEN_config.json
!TWE_config.json
23 changes: 23 additions & 0 deletions DI-1299/CEN_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"assay": "CEN",
"search_term": "*CEN38",
"number_of_projects": null,
"filename": "Multiqc_somalier.samples.tsv",
"column_to_compare": "Predicted_Sex",
"sample_column": "sample_id",
"variables_to_plot": [
[
"X_n", "X_het", "X_hom_ref", "X_hom_alt", "X_depth_mean"
],
[
"Y_n", "Y_depth_mean"
],
[
"n_het", "n_hom_ref", "n_unknown", "n_hom_alt"
],
[
"depth_mean", "depth_sd", "gt_depth_mean", "gt_depth_sd",
"ab_mean", "ab_std", "p_middling_ab"
]
]
}
23 changes: 23 additions & 0 deletions DI-1299/TWE_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"assay": "TWE",
"search_term": "*TWE38",
"number_of_projects": null,
"filename": "Multiqc_somalier.samples.tsv",
"column_to_compare": "Predicted_Sex",
"sample_column": "sample_id",
"variables_to_plot": [
[
"X_n", "X_het", "X_hom_ref", "X_hom_alt", "X_depth_mean"
],
[
"Y_n", "Y_depth_mean"
],
[
"n_het", "n_hom_ref", "n_unknown", "n_hom_alt"
],
[
"depth_mean", "depth_sd", "gt_depth_mean", "gt_depth_sd",
"ab_mean", "ab_std", "p_middling_ab"
]
]
}

0 comments on commit 8177b82

Please sign in to comment.