Skip to content

Commit

Permalink
Bump for v0.8.1 bugfix release.
Browse files Browse the repository at this point in the history
(+ add citation and relax annoying linter rule)
  • Loading branch information
abought committed Oct 22, 2021
1 parent 14088e2 commit 4c6e3e3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,17 @@ module.exports = {
'always'
],
'space-before-blocks': 'error',
'space-infix-ops': 'error'
'space-infix-ops': 'error',
'vue/max-attributes-per-line': ['warning', {
'singleline': {
'max': 3,
'allowFirstLine': true
},
'multiline': {
'max': 1,
'allowFirstLine': false
}
}]
},
parserOptions: {
parser: 'babel-eslint',
Expand Down
6 changes: 6 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ export default {
class="mt-2">
<b-card>
<div class="card-text">
<p>
If you have found this tool useful, please cite our paper,
<a href="https://doi.org/10.1093/bioinformatics/btab186" target="_blank">LocusZoom.js:
interactive and embeddable visualization of genetic association study results</a> (Bioinformatics 2021).
</p>

LocalZoom is a tool for generating region association plots via the web browser.
It can be used on any Tabix-indexed file (including those stored on your hard drive), which
makes it useful for sensitive or confidential data. If you are comfortable uploading
Expand Down

0 comments on commit 4c6e3e3

Please sign in to comment.