Skip to content

Commit

Permalink
recompile
Browse files Browse the repository at this point in the history
  • Loading branch information
lindenb committed May 28, 2024
1 parent 0fea7e6 commit b61ead4
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/JvarkitCentral.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ JVARKIT
=======

Author : Pierre Lindenbaum Phd. Institut du Thorax. Nantes. France.
Version : 1d314396
Compilation : 20240527120403
Version : 0fea7e6dc
Compilation : 20240528092236
Github : https://github.com/lindenb/jvarkit
Issues : https://github.com/lindenb/jvarkit/issues

Expand Down
94 changes: 94 additions & 0 deletions docs/PlotBcftoolsStats.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# PlotBcftoolsStats

![Last commit](https://img.shields.io/github/last-commit/lindenb/jvarkit.png)

Plot bcftools stats output


## Usage


This program is now part of the main `jvarkit` tool. See [jvarkit](JvarkitCentral.md) for compiling.


```
Usage: java -jar dist/jvarkit.jar plotbcftoolsstats [options] Files
Usage: plotbcftoolsstats [options] Files
Options:
--categories, --phenotypes
A tab delimited file (sample)<tab>(category)
--format
output format.
Default: PDF
Possible Values: [PDF, PNG, SVG]
-h, --help
print help and exit
--helpFormat
What kind of help. One of [usage,markdown,xml].
-o, --output
Output file. Optional . Default: stdout
--prefix
output prefix.
Default: <empty string>
--sections
Limit to those sections. eg. 'QUAL,PSC,PSI'. Comma-separated values.
Ignore if empty. Inverse the selection if it starts with '^'.
Default: <empty string>
--version
print version and exit
-D
set some css style elements. '-Dkey=value'. Undocumented.
Syntax: -Dkey=value
Default: {}
```


## Keywords

* bcftools
* qc
* vcf



## Creation Date

20210622

## Source code

[https://github.com/lindenb/jvarkit/tree/master/src/main/java/com/github/lindenb/jvarkit/tools/bcftools/PlotBcftoolsStats.java](https://github.com/lindenb/jvarkit/tree/master/src/main/java/com/github/lindenb/jvarkit/tools/bcftools/PlotBcftoolsStats.java)


## Contribute

- Issue Tracker: [http://github.com/lindenb/jvarkit/issues](http://github.com/lindenb/jvarkit/issues)
- Source Code: [http://github.com/lindenb/jvarkit](http://github.com/lindenb/jvarkit)

## License

The project is licensed under the MIT license.

## Citing

Should you cite **plotbcftoolsstats** ? [https://github.com/mr-c/shouldacite/blob/master/should-I-cite-this-software.md](https://github.com/mr-c/shouldacite/blob/master/should-I-cite-this-software.md)

The current reference is:

[http://dx.doi.org/10.6084/m9.figshare.1425030](http://dx.doi.org/10.6084/m9.figshare.1425030)

> Lindenbaum, Pierre (2015): JVarkit: java-based utilities for Bioinformatics. figshare.
> [http://dx.doi.org/10.6084/m9.figshare.1425030](http://dx.doi.org/10.6084/m9.figshare.1425030)

## Warning

this tool is not stable

## Example

todo


4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ JVARKIT
=======

Author : Pierre Lindenbaum Phd. Institut du Thorax. Nantes. France.
Version : 1d314396
Compilation : 20240527120403
Version : 0fea7e6dc
Compilation : 20240528092236
Github : https://github.com/lindenb/jvarkit
Issues : https://github.com/lindenb/jvarkit/issues

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public void setDepth(int depthx,int depthy)
int ty =(this.sample_y*owner.bitSize + scaledy) *owner.getWidth();


int bit_index= (int)(tx+ty);
int bit_index= (tx+ty);
if(bit_index> owner.getWidth()*owner.getWidth())
{
throw new RuntimeException(
Expand Down

0 comments on commit b61ead4

Please sign in to comment.