Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
${c4} G➖➖C | |
C➖G | |
TA | |
C➖G | |
G➖➖C | |
A➖➖➖T | |
G➖➖➖C | |
T➖➖A | |
C➖G |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# Maintainer: Clint Valentine <[email protected]> | |
pkgname=polyphen | |
pkgver=2.2.2r405c | |
pkgrel=1 | |
dbver=2.2.2 | |
blastver=2.7.1 | |
pkgdesc="A tool to predict impact of amino acid substitutions on the structure and function of human proteins" | |
arch=('any') | |
url="http://genetics.bwh.harvard.edu/pph2/dokuwiki/downloads" |
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
# Maintainer: Clint Valentine <[email protected]> | |
pkgname=vep | |
pkgver=90.10 | |
pkgrel=1 | |
pkgdesc="Determines the effect of variants on genes, transcripts, and protein sequences as well as regulatory regions" | |
arch=('x86_64') | |
url="https://useast.ensembl.org/info/docs/tools/vep/index.html" | |
license=('GPL3') | |
depends=('perl>=5' 'perl-module-build' 'bioperl-live-git') |
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
rule illumina_basecalls_to_sam: | |
input: | |
basecalls_dir=basecalls_dir, | |
barcodes_dir=rules.extract_illumina_barcodes.output.barcodes_dir, | |
library_params=rules.create_basecalling_params.output.library_params | |
output: list_unmerged_sample_bam() | |
threads: max(1, int(threads / len(lanes))) | |
resources: | |
gc_time_limit=50, | |
gc_heap_free_limit=10, |
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
import base64 | |
import matplotlib.pyplot as plt | |
from matplotlib import animation | |
from tempfile import NamedTemporaryFile | |
__all__ = [ | |
'Animation', | |
'animate_3d_scatter'] |