Skip to content

Commit

Permalink
Add vscode launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
atolopko-czi committed Feb 1, 2024
1 parent 17d12a3 commit 3493f06
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Memento (tiny)",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}/api/python/cellxgene_census/src/",
"module": "cellxgene_census.experimental.diffexp.memento.diff_expr",
"justMyCode": true,
"args": [
"tissue_general_ontology_term_id in ['UBERON:0002405']",
"sex_ontology_term_id",
"/mnt/census/estimators-cube-70a7705/",
"1",
"1000"],
"subProcess": true
},
{
"name": "Memento (small)",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}/api/python/cellxgene_census/src/",
"module": "cellxgene_census.experimental.diffexp.memento.diff_expr",
"justMyCode": true,
"args": [
"tissue_general_ontology_term_id in ['UBERON:0000030', 'UBERON:0000992']",
"tissue_general_ontology_term_id",
"/mnt/census/estimators-cube-70a7705/",
"1",
"1000"],
"subProcess": true
},
{
"name": "Memento (medium)",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}/api/python/cellxgene_census/src/",
"module": "cellxgene_census.experimental.diffexp.memento.diff_expr",
"justMyCode": true,
"args": [
"tissue_general_ontology_term_id in ['UBERON:0000948', 'UBERON:0001004']",
"tissue_general_ontology_term_id",
"/mnt/census/estimators-cube-70a7705/",
"1",
"5000"],
"subProcess": true
},
{
"name": "Memento (large)",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}/api/python/cellxgene_census/src/",
"module": "cellxgene_census.experimental.diffexp.memento.diff_expr",
"justMyCode": true,
"args": [
"tissue_general_ontology_term_id in ['UBERON:0000948', 'UBERON:0001004']",
"tissue_general_ontology_term_id",
"/mnt/census/estimators-cube-70a7705/",
"1",
""],
"subProcess": true
},
{
"name": "Python: File",
"type": "python",
"request": "launch",
"program": "${file}",
"justMyCode": true
}
]
}

0 comments on commit 3493f06

Please sign in to comment.