Skip to content

Commit 4cb4793

Browse files
committed
refactor: ignore missing variables for now
Signed-off-by: Josh Loecker <joshloecker@icloud.com>
1 parent 3207eb2 commit 4cb4793

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

main/COMO.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
}
443443
],
444444
"source": [
445-
"from como.rnaseq_gen import rnaseq_gen, FilteringTechnique\n",
445+
"from como.rnaseq_gen import FilteringTechnique, rnaseq_gen\n",
446446
"\n",
447447
"replicate_ratio = 0.75\n",
448448
"high_confidence_replicate_ratio = 1.0\n",
@@ -452,7 +452,7 @@
452452
"cutoff = -3\n",
453453
"\n",
454454
"for i, context in enumerate(context_names):\n",
455-
" await rnaseq_gen( # noqa\n",
455+
" await rnaseq_gen(\n",
456456
" context_name=context,\n",
457457
" input_rnaseq_filepath=trna_matrix_filepath[i],\n",
458458
" input_gene_info_filepath=gene_info_filepath[i],\n",
@@ -494,7 +494,7 @@
494494
"metadata": {},
495495
"outputs": [],
496496
"source": [
497-
"from como.rnaseq_gen import rnaseq_gen, FilteringTechnique\n",
497+
"from como.rnaseq_gen import FilteringTechnique, rnaseq_gen\n",
498498
"\n",
499499
"replicate_ratio = 0.75\n",
500500
"high_confidence_replicate_ratio = 1.0\n",
@@ -546,7 +546,7 @@
546546
"metadata": {},
547547
"outputs": [],
548548
"source": [
549-
"from como.rnaseq_gen import rnaseq_gen, FilteringTechnique\n",
549+
"from como.rnaseq_gen import FilteringTechnique, rnaseq_gen\n",
550550
"\n",
551551
"replicate_ratio = 0.75\n",
552552
"high_confidence_replicate_ratio = 1.0\n",
@@ -744,8 +744,8 @@
744744
" [\n",
745745
" \"python3\", \"como/merge_xomics.py\",\n",
746746
" \"--merge-zfpkm-distribution\",\n",
747-
" \"--total-rnaseq-config-file\", trnaseq_config_file,\n",
748-
" \"--mrnaseq-config-file\", mrnaseq_config_file,\n",
747+
" \"--total-rnaseq-config-file\", trnaseq_config_file, # noqa: F821\n",
748+
" \"--mrnaseq-config-file\", mrnaseq_config_file, # noqa: F821\n",
749749
" # \"--scrnaseq-config-file\", scrnaseq_config_file, # If using single-cell data, uncomment the start of this line\n",
750750
" # \"--proteomics-config-file\", proteomics_config_file, # If using proteomics data, uncomment the start of this line\n",
751751
" \"--requirement-adjust\", requirement_adjust,\n",

0 commit comments

Comments
 (0)