@jbrowse/img 1.7.5 → 1.7.8
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.
- package/README.md +13 -6
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ You don't need to have JBrowse 2 installed to use this tool. The tool can genera
|
|
|
10
10
|
|
|
11
11
|
## Screenshot
|
|
12
12
|
|
|
13
|
-

|
|
13
|
+

|
|
14
14
|
|
|
15
15
|
More examples [EXAMPLES.md](EXAMPLES.md)
|
|
16
16
|
|
|
@@ -51,14 +51,21 @@ jb2export --fasta yourfile.fa --bam yourfile.bam --loc chr1:1,000,000-1,001,000
|
|
|
51
51
|
|
|
52
52
|
If `--out` is not specified it writes to out.svg
|
|
53
53
|
|
|
54
|
-
### Generate
|
|
54
|
+
### Generate PNG instead of SVG
|
|
55
55
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
install rsvg-convert to your system e.g. with `sudo apt install librsvg2-bin`)
|
|
56
|
+
Supply a file with the png extension to `--out`, uses rsvg-convert so you will
|
|
57
|
+
need to install rsvg-convert to your system e.g. with `sudo apt install librsvg2-bin`
|
|
59
58
|
|
|
60
59
|
```
|
|
61
60
|
jb2export --fasta yourfile.fa --bam yourfile.bam --loc chr1:1,000,000-1,001,000 --out file.png
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Generate PDF instead of SVG
|
|
64
|
+
|
|
65
|
+
Supply a file with the pdf extension to `--out`, uses rsvg-convert so you will
|
|
66
|
+
need to install rsvg-convert to your system e.g. with `sudo apt install librsvg2-bin`
|
|
67
|
+
|
|
68
|
+
```
|
|
62
69
|
jb2export --fasta yourfile.fa --bam yourfile.bam --loc chr1:1,000,000-1,001,000 --out file.pdf
|
|
63
70
|
```
|
|
64
71
|
|
|
@@ -66,7 +73,7 @@ jb2export --fasta yourfile.fa --bam yourfile.bam --loc chr1:1,000,000-1,001,000
|
|
|
66
73
|
|
|
67
74
|
This example shows using remote files, e.g. with human hg19 and several tracks
|
|
68
75
|
|
|
69
|
-
Note the use of --aliases
|
|
76
|
+
Note the use of --aliases, which smoothes over refname differences e.g. fasta
|
|
70
77
|
contains 1 for chr1, and bigbed contains chr1, gff contains NC_000001.10
|
|
71
78
|
|
|
72
79
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/img",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.8",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "JBrowse Team",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@babel/runtime": "^7.17.9",
|
|
32
|
-
"@jbrowse/plugin-linear-genome-view": "^1.7.
|
|
33
|
-
"@jbrowse/react-linear-genome-view": "^1.7.
|
|
32
|
+
"@jbrowse/plugin-linear-genome-view": "^1.7.8",
|
|
33
|
+
"@jbrowse/react-linear-genome-view": "^1.7.8",
|
|
34
34
|
"abortcontroller-polyfill": "^1.7.3",
|
|
35
35
|
"mobx": "^5.10.1",
|
|
36
36
|
"node-fetch": "^2.6.7",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "b429fa2bb5734fc8a5380988f6dfdd3f7a41a39f"
|
|
46
46
|
}
|