-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Converted the tutorial into a jupyter notebook; expanded docs
- Loading branch information
Showing
8 changed files
with
884 additions
and
197 deletions.
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
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
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,16 @@ | ||
#### REQUIRED #### | ||
model_path: "../data/models/cue.pt" # path to the pretrained Cue model | ||
#### OPTIONAL #### | ||
gpu_ids: [] # list of GPU ids to use for calling -- a CPU will be used if empty | ||
report_interval: 5 # frequency (in number of batches) for reporting training stats and image predictions | ||
pretrained_refinenn_path: null # path to the pretrained keypoint refinement model | ||
#### FIXED (do not modify) #### | ||
image_dim: 256 | ||
class_set: "BASIC5ZYG" | ||
signal_set: "SHORT" | ||
num_keypoints: 1 | ||
model_architecture: "HG" | ||
batch_size: 16 | ||
sigma: 10 | ||
stride: 4 | ||
heatmap_peak_threshold: 0.65 |
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,23 @@ | ||
#### REQUIRED #### | ||
bam: "../data/demo/inputs/chr21.small.bam" # path to the alignments BAM file | ||
fai: "../data/demo/inputs/GRCh38.fa.fai" # path to the referene FASTA FAI file | ||
bed: "../data/demo/results/reports/svs.vcf" # SVs to visualize (BED or VCF) | ||
#### OPTIONAL #### | ||
n_cpus: 1 # number of CPUs to use (parallelized by chromosome) | ||
chr_names: ["chr21"] # list of chromosomes to process: null (all) or a specific list e.g. ["chr1", "chr21"] | ||
#### FIXED (do not modify) #### | ||
blacklist_bed: null | ||
bam_type: "SHORT" | ||
signal_set: "SHORT" | ||
signal_set_origin: "SHORT" | ||
signal_vmax: {"RD": 600, "RD_LOW": 800, "RD_CLIPPED": 600, "SM": 200, "SR_RP": 600, "LR": 600, "LLRR": 100, "RL": 100, "LLRR_VS_LR": 1} | ||
signal_mapq: {"RD": 20, "RD_LOW": 0, "RD_CLIPPED": 20, "SM": 20, "SR_RP": 0, "LR": 0, "LLRR": 1, "RL": 1, "LLRR_VS_LR": 1} | ||
bin_size: 750 | ||
interval_size: [150000] | ||
step_size: [50000] | ||
shift_size: [0, 70000, 140000] | ||
heatmap_dim: 1000 | ||
image_dim: 256 | ||
class_set: "BASIC5ZYG" | ||
num_keypoints: 1 | ||
bbox_padding: 0 |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,81 +1,20 @@ | ||
ACEBinf==1.0.2 | ||
argcomplete==2.0.0 | ||
argh==0.26.2 | ||
attrs==21.4.0 | ||
setuptools==58.0.0 | ||
bitarray==1.6.3 | ||
bleach==3.1.5 | ||
bwapy==0.1.4 | ||
cachetools==4.1.0 | ||
certifi==2021.10.8 | ||
cffi==1.14.2 | ||
chardet==3.0.4 | ||
charset-normalizer==2.0.12 | ||
cycler==0.11.0 | ||
Cython==0.29.21 | ||
fonttools==4.33.3 | ||
future==0.18.2 | ||
gast==0.3.3 | ||
gffutils==0.10.1 | ||
idna==3.3 | ||
importlib-metadata==4.11.3 | ||
cython==0.29.21 | ||
intervaltree==3.1.0 | ||
ipython-genutils==0.2.0 | ||
joblib==0.16.0 | ||
jsonpatch==1.32 | ||
jsonpointer==2.3 | ||
kiwisolver==1.4.2 | ||
mappy==2.18 | ||
matplotlib==3.2.1 | ||
more-itertools==8.3.0 | ||
networkx==2.6.3 | ||
numpy==1.18.5 | ||
opencv-python==4.5.1.48 | ||
packaging==21.3 | ||
pandas==1.0.5 | ||
pickleshare==0.7.5 | ||
Pillow==7.2.0 | ||
pluggy==0.13.1 | ||
progressbar2==4.0.0 | ||
py==1.8.1 | ||
pycocotools==2.0.4 | ||
pycparser==2.20 | ||
pyfaidx==0.5.9.5 | ||
pyparsing==3.0.8 | ||
pysam==0.16.0.1 | ||
pytabix==0.1 | ||
pytest==5.4.2 | ||
python-dateutil==2.8.1 | ||
python-Levenshtein==0.12.1 | ||
python-utils==3.1.0 | ||
pytz==2022.1 | ||
PyVCF==0.6.8 | ||
PyYAML==5.3.1 | ||
pyzmq==22.3.0 | ||
RCK==1.1.0 | ||
requests==2.27.1 | ||
scikit-learn==0.23.2 | ||
scipy==1.4.1 | ||
pyyaml==5.3.1 | ||
seaborn==0.11.0 | ||
simplejson==3.17.6 | ||
six==1.14.0 | ||
sklearn==0.0 | ||
sortedcontainers==2.3.0 | ||
Tcl==0.2 | ||
termcolor==1.1.0 | ||
threadpoolctl==2.1.0 | ||
threadsafe-tkinter==1.0.2 | ||
torch==1.5.1 | ||
torchfile==0.1.0 | ||
torchvision==0.6.1 | ||
tornado==6.1 | ||
traitlets==5.0.4 | ||
Truvari==2.1 | ||
typing_extensions==4.2.0 | ||
urllib3==1.25.9 | ||
visdom==0.1.8.9 | ||
wcwidth==0.1.9 | ||
wdl==1.0.22 | ||
webencodings==0.5.1 | ||
websocket-client==1.3.2 | ||
xtermcolor==1.3 | ||
zipp==3.1.0 | ||
jupyter |
Oops, something went wrong.