Skip to content

Commit

Permalink
Merge pull request #14 from jluebeck/master
Browse files Browse the repository at this point in the history
bugfix for gene_subset_file var name provided by .yaml
  • Loading branch information
jluebeck committed Jun 7, 2023
2 parents a2b2d37 + b88290c commit 2151b0a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*BPG_converted_cycles*
*.pyc
test_files/
test.txt
*.cmap
*_graph.txt
*_key.txt
Expand Down
2 changes: 1 addition & 1 deletion VizUtil.py
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ def parse_main_args_yaml(args):
if "seg_label_fontsize" in sample_data:
args.seg_label_fontsize = sample_data.get("seg_label_fontsize")
if "gene_subset_file" in sample_data:
args.gene_subset_files = sample_data.get("gene_subset_file")
args.gene_subset_file = sample_data.get("gene_subset_file")
if "gene_subset_list" in sample_data:
args.gene_subset_list = sample_data.get("gene_subset_list")
print(args.gene_subset_list)
Expand Down
3 changes: 2 additions & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ Data derived from oropharyngeal squamous cell carinoma with hybrid human-viral e
3. Call CycleViz

**Note that the order in which the feature YAML files are provided specifies the order in which the interior tracks appear (first is innermost, last is outermost).**
>`$CV_SRC/CycleViz.py --input_yaml_file t41_CV.yaml --feature_yaml_list T41_link_track.yaml T41_wgs_track.yaml T41_rna_track.yaml`
>`$CV_SRC/CycleViz.py --input_yaml_file t41_CV.yaml --feature_yaml_list T41_link_track.yaml T41_wgs_track.yaml T41_rna_track.yaml`

0 comments on commit 2151b0a

Please sign in to comment.