Browse Source

changed features to dictionary

Avik Datta 4 years ago
parent
commit
5bf9f83100
2 changed files with 2 additions and 2 deletions
  1. 1 1
      airflow_var/var.json
  2. 1 1
      dags/dag9_tenx_single_cell_immune_profiling.py

+ 1 - 1
airflow_var/var.json

@@ -33,7 +33,7 @@
   "woolf_server_hostname":"woolf.med.ic.ac.uk",
   "eliot_server_hostname":"eliot.med.ic.ac.uk",
   "igf_lims_server_hostname":"igf-lims.cc.ic.ac.uk",
-  "tenx_single_cell_immune_profiling_feature_types": ["gene_expression","vdj","vdj-t","vdj-b","antibody_capture","antigen_capture","crisper_guide_capture"],
+  "tenx_single_cell_immune_profiling_feature_types": {"gene_expression":"","vdj":"","vdj-t":"","vdj-b":"","antibody_capture":"","antigen_capture":"","crisper_guide_capture":""},
   "scanpy_single_sample_template":"",
   "scanpy_notebook_image":"",
   "scirpy_single_sample_template":"",

+ 1 - 1
dags/dag9_tenx_single_cell_immune_profiling.py

@@ -74,7 +74,7 @@ with dag:
               'analysis_info_xcom_key':'analysis_info',
               'library_csv_xcom_key':'cellranger_library_csv'},
       python_callable=configure_cellranger_run_func)
-  for analysis_name in FEATURE_TYPE_LIST:
+  for analysis_name in FEATURE_TYPE_LIST.keys():
     ## TASK
     task_branch = \
       BranchPythonOperator(