Skip to content

Commit

Permalink
Merge branch 'main' into JD-24-pileup-circular
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion authored Sep 29, 2023
2 parents b755730 + f55b599 commit 5aea888
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/tools/AggregateSvPileup.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pileups in the cluster.
|Name|Flag|Type|Description|Required?|Max Values|Default Value(s)|
|----|----|----|-----------|---------|----------|----------------|
|input|i|FilePath|Input text file of pileups generated by SvPileup|Required|1||
|bam|b|PathToBam|Bam file for allele frequency analysis. Must be the same file that was used as input to SvPileup.|Optional|1||
|bam|b|PathToBam|Bam file for allele frequency analysis. Must be coordinate sorted version of the file that was input to SvPileup.|Optional|1||
|flank|f|Int|If BAM file is provided: distance upstream and downstream of aggregated breakpoint regions to search for mapped templates that overlap breakends. These are the templates that will be partitioned into those supporting the breakpoint vs. reading through it for the allele frequency calculation. Recommended to use at least the max read pair inner distance used by SvPileup.|Optional|1|1000|
|min-breakpoint-support||Int|If BAM file is provided: minimum total number of templates supporting an aggregated breakpoint to report allele frequency. Supports speed improvement by avoiding querying and iterating over huge read pileups that contain insufficient support for a breakpoint to be considered interesting.|Optional|1|10|
|min-frequency||Double|If BAM file is provided: minimum allele frequency to report. Supports speed improvement by avoiding iterating over huge read pileups that contain insufficient support for a breakpoint to be considered interesting.|Optional|1|0.001|
Expand Down
1 change: 1 addition & 0 deletions docs/tools/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ title: fgsv tools
# fgsv tools

The following tools are available in fgsv version 0.0.3-4fee506.

## All tools

All tools.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import scala.collection.mutable
|""")
class AggregateSvPileup
(@arg(flag='i', doc="Input text file of pileups generated by SvPileup") input: FilePath,
@arg(flag='b', doc="Bam file for allele frequency analysis. Must be the same file that was used as input to SvPileup.")
@arg(flag='b', doc="Bam file for allele frequency analysis. Must be coordinate sorted version of the file that was input to SvPileup.")
bam: Option[PathToBam] = None,
@arg(flag='f', doc="If BAM file is provided: distance upstream and downstream of aggregated breakpoint regions to " +
"search for mapped templates that overlap breakends. These are the templates that will be partitioned into those " +
Expand Down

0 comments on commit 5aea888

Please sign in to comment.