pycmplot 0.2.9__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pycmplot-0.2.9 → pycmplot-0.3.0}/PKG-INFO +1 -1
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/__init__.py +1 -1
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/annotation.py +2 -2
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/plotting/linear.py +0 -1
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot.egg-info/PKG-INFO +1 -1
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pyproject.toml +1 -1
- {pycmplot-0.2.9 → pycmplot-0.3.0}/setup.cfg +1 -1
- {pycmplot-0.2.9 → pycmplot-0.3.0}/LICENSE +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/README.md +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/benchmark/bench_python.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/benchmark/collect_results.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/benchmark/generate_multi_sumstats.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/benchmark/generate_sumstats.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/__main__.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/_core.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/cli.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/constants.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/data/Homo_sapiens.GRCh37.geneinfo.tsv.gz +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/data/Homo_sapiens.GRCh38.geneinfo.tsv.gz +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/data/hg18ToHg38.over.chain.gz +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/data/hg19ToHg38.over.chain.gz +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/io.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/liftover.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/plotting/__init__.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/plotting/circular.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/plotting/qq.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/resources.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot/stats.py +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot.egg-info/SOURCES.txt +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot.egg-info/dependency_links.txt +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot.egg-info/entry_points.txt +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot.egg-info/requires.txt +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/pycmplot.egg-info/top_level.txt +0 -0
- {pycmplot-0.2.9 → pycmplot-0.3.0}/setup.py +0 -0
|
@@ -589,11 +589,11 @@ def get_annotation_column(
|
|
|
589
589
|
try:
|
|
590
590
|
if row["genic"]:
|
|
591
591
|
label_clm = "nearest_upstream_gene"
|
|
592
|
-
label_msg = "'POS' is genic"
|
|
592
|
+
label_msg = f"Signal {row['SNP']} at {row['POS']} is genic [{row['nearest_upstream_gene']}]"
|
|
593
593
|
else:
|
|
594
594
|
label_clm = "top_gene"
|
|
595
595
|
label_msg = "'POS' is not genic"
|
|
596
|
-
logger.info("%s", label_msg)
|
|
596
|
+
#logger.info("%s", label_msg)
|
|
597
597
|
except Exception:
|
|
598
598
|
logger.warning(
|
|
599
599
|
"Annotation columns '%s' and '%s' not found in hits table: %s; "
|
|
@@ -1375,7 +1375,6 @@ def plot_linearm(
|
|
|
1375
1375
|
differences = np.diff(df_chr['POS']).tolist()
|
|
1376
1376
|
less_than_spread_width.append(list(filter(lambda x: x < s_width, differences)))
|
|
1377
1377
|
less_than_spread_width = [l for l in less_than_spread_width if not len(l) == 0]
|
|
1378
|
-
print(len(less_than_spread_width))
|
|
1379
1378
|
if len(less_than_spread_width) < 5:
|
|
1380
1379
|
_draw_annotation_arrows(
|
|
1381
1380
|
ax_annot,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|