-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
1,653 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# CNV witty.er Examples | ||
|
||
In this folder, you will find a dragen CNV output file ([HG002.cnv.vcf.gz](HG002.cnv.vcf.gz)) and a [config.json](config.json), which will be used as input. Example output can be found in the [output folder](output). | ||
|
||
1. Download the NIST truth set [VCF file](ftp://ftp-trace.ncbi.nlm.nih.gov/giab/ftp/data/AshkenazimTrio/analysis/NIST_SVs_Integration_v0.6/HG002_SVs_Tier1_v0.6.vcf.gz) and [BED file](ftp://ftp-trace.ncbi.nlm.nih.gov/giab/ftp/data/AshkenazimTrio/analysis/NIST_SVs_Integration_v0.6/HG002_SVs_Tier1_v0.6.bed) | ||
2. Install dotnet if you don't already have it installed on your system (you can google directions on how to install based on your system). | ||
3. Build witty.er with the `dotnet publish` command under the Wittyer project folder | ||
4. Run the following command line: | ||
|
||
```bash | ||
# DOTNET is your path to your dotnet executable | ||
# WITTYER_DLL is the path to the wittyer dll. | ||
$DOTNET $WITTYER_DLL \ | ||
-t NIST_v0.6/HG002_SVs_Tier1_v0.6.vcf.gz \ | ||
-i HG002.cnv.vcf.gz \ | ||
-em CrossTypeAndSimpleCounting \ | ||
--configFile config.json \ | ||
--includeBed NIST_v0.6/HG002_SVs_Tier1_v0.6.bed \ | ||
-o output/ | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[ | ||
{ | ||
"variantType": "Duplication", | ||
"binSizes": "1000,5000,10000,20000,50000", | ||
"bpDistance": 10000, | ||
"percentDistance": 0.25, | ||
"includedFilters": "PASS", | ||
"excludedFilters": "" | ||
}, | ||
{ | ||
"variantType": "Deletion", | ||
"binSizes": "1000,5000,10000,20000,50000", | ||
"bpDistance": 10000, | ||
"percentDistance": 0.25, | ||
"includedFilters": "PASS", | ||
"excludedFilters": "" | ||
}, | ||
{ | ||
"variantType": "CopyNumberReference", | ||
"binSizes": "1000,5000,10000,20000,50000", | ||
"bpDistance": 10000, | ||
"percentDistance": 0.25, | ||
"includedFilters": "PASS", | ||
"excludedFilters": "" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[ | ||
{ | ||
"variantType": "Duplication", | ||
"binSizes": "1000,5000,10000,20000,50000", | ||
"bpDistance": 10000, | ||
"percentDistance": 0.25, | ||
"includedFilters": "PASS", | ||
"excludedFilters": "", | ||
"includeBed": "NIST_v0.6/HG002_SVs_Tier1_v0.6.bed" | ||
}, | ||
{ | ||
"variantType": "Deletion", | ||
"binSizes": "1000,5000,10000,20000,50000", | ||
"bpDistance": 10000, | ||
"percentDistance": 0.25, | ||
"includedFilters": "PASS", | ||
"excludedFilters": "", | ||
"includeBed": "NIST_v0.6/HG002_SVs_Tier1_v0.6.bed" | ||
}, | ||
{ | ||
"variantType": "CopyNumberReference", | ||
"binSizes": "1000,5000,10000,20000,50000", | ||
"bpDistance": 10000, | ||
"percentDistance": 0.25, | ||
"includedFilters": "PASS", | ||
"excludedFilters": "", | ||
"includeBed": "NIST_v0.6/HG002_SVs_Tier1_v0.6.bed" | ||
} | ||
] |
Binary file not shown.
Binary file added
BIN
+314 KB
docs/examples/CNV/output/Wittyer.HG002.Vs.PrecisionFDA_HG002.vcf.gz.tbi
Binary file not shown.
Oops, something went wrong.