@jbrowse/img 1.7.6 → 1.7.9

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.
Files changed (2) hide show
  1. package/README.md +13 -6
  2. 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
- ![](img/1.png)
13
+ ![](https://raw.githubusercontent.com/GMOD/jbrowse-components/main/products/jbrowse-img/img/1.png)
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 PDF of PNG instead of SVG
54
+ ### Generate PNG instead of SVG
55
55
 
56
- If a filename with a `pdf` or `png` extension is supplied to `--out` then the
57
- tool tries to convert from svg to pdf/png using rsvg-convert (you will need to
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 to smooth over refname differences e.g. fasta
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.6",
3
+ "version": "1.7.9",
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.6",
33
- "@jbrowse/react-linear-genome-view": "^1.7.6",
32
+ "@jbrowse/plugin-linear-genome-view": "^1.7.9",
33
+ "@jbrowse/react-linear-genome-view": "^1.7.9",
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": "dbd73f99714e395cf20877d5e05d26855857a0e3"
45
+ "gitHead": "a6504c385d703ce6e755d05652ef659ffe28c864"
46
46
  }