Skip to content

Commit 855b2f0

Browse files
committed
v0.2.8, minor updates
1 parent 4cd3689 commit 855b2f0

18 files changed

Lines changed: 296 additions & 193 deletions

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ And a more detailed tutorial could be found at [here.](https://trackplot.readthe
326326

327327
```bash
328328
# example of basic plot types
329-
python main.py \
329+
python ../main.py \
330330
-e chr1:1270656-1284730:+ \
331331
-r example/example.sorted.gtf.gz \
332332
--interval example/interval_list.tsv \
@@ -345,6 +345,7 @@ python main.py \
345345
--barcode example/barcode_list.tsv \
346346
--domain --remove-duplicate-umi \
347347
--normalize-format cpm \
348+
--annotation-scale .3 \
348349
-p 4
349350
```
350351

@@ -377,6 +378,7 @@ docker run -v $PWD:$PWD --rm ygidtu/trackplot \
377378
--barcode $PWD/example/barcode_list.tsv \
378379
--domain --remove-duplicate-umi \
379380
--normalize-format cpm \
381+
--annotation-scale .3 \
380382
-p 4
381383

382384
```

cmdAppImageBuilder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ AppDir:
1111
app_info:
1212
id: org.appimage-crafters.trackplot
1313
name: trackplot
14-
version: 0.2.7
14+
version: 0.2.8
1515
# Set the python executable as entry point
1616
exec: "bin/python3"
1717
# Set the application main script path as argument. Use '$@' to forward CLI parameters

example/example.png

-27.4 KB
Loading

main.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@
99

1010

1111
if __name__ == "__main__":
12-
main()
13-
12+
try:
13+
main()
14+
except Exception as err:
15+
logger.exception(err)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "trackplot"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
description = "The trackplot is a tool for visualizing various next-generation sequencing (NGS) data, including DNA-seq, RNA-seq, single-cell RNA-seq and full-length sequencing datasets. https://sashimi.readthedocs.io/"
55
authors = ["ygidtu <ygidtu@gmail.com>"]
66
license = "BSD-3"

0 commit comments

Comments
 (0)