###Download STAR### Obtain STAR source from https://github.com/alexdobin/STAR
Add the following to your .bashrc file and source it:
export PATH=/path/to/STAR/bin/:$PATH
###Generate Reference Genome
#!/bin/bash | |
# function Extract for common file formats | |
function extract { | |
if [ -z "$1" ]; then | |
# display usage if no parameters given | |
echo "Usage: extract <path/file_name>.<zip|rar|bz2|gz|tar|tbz2|tgz|Z|7z|xz|ex|tar.bz2|tar.gz|tar.xz>" | |
else | |
if [ -f "$1" ] ; then | |
NAME=${1%.*} |
###Download STAR### Obtain STAR source from https://github.com/alexdobin/STAR
Add the following to your .bashrc file and source it:
export PATH=/path/to/STAR/bin/:$PATH
###Generate Reference Genome
FROM python:3.6-slim-stretch | |
ADD requirements.txt /tmp/requirements.txt | |
RUN apt-get update && \ | |
apt-get install -y \ | |
build-essential \ | |
make \ | |
gcc \ | |
locales \ |
# Source: https://stackoverflow.com/a/43317244 | |
$path = ".\aws-ec2-key.pem" | |
# Reset to remove explict permissions | |
icacls.exe $path /reset | |
# Give current user explicit read-permission | |
icacls.exe $path /GRANT:R "$($env:USERNAME):(R)" | |
# Disable inheritance and remove inherited permissions | |
icacls.exe $path /inheritance:r |
*bcftools filter | |
*Filter variants per region (in this example, print out only variants mapped to chr1 and chr2) | |
qbcftools filter -r1,2 ALL.chip.omni_broad_sanger_combined.20140818.snps.genotypes.hg38.vcf.gz | |
*printing out info for only 2 samples: | |
bcftools view -s NA20818,NA20819 filename.vcf.gz | |
*printing stats only for variants passing the filter: | |
bcftools view -f PASS filename.vcf.gz |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main |
Let suppose I have two github accounts, https://github.com/rahul-office and https://github.com/rahul-personal. Now i want to setup my mac to easily talk to both the github accounts.
NOTE: This logic can be extended to more than two accounts also. :)
The setup can be done in 5 easy steps:
name | website | round_name | amount_raised | round_date | hq_location | year_founded | description | |
---|---|---|---|---|---|---|---|---|
Lacework | lacework.com | Series D | $1,300,000,000.00 | 2021-11-17 | Mountain View, CA | 2015 | Lacework delivers threat/anomaly detection and compliance across multicloud environments, workloads, containers and K8s. | |
BridgeBio | bridgebio.com | Post Ipo Debt | $750,000,000.00 | 2021-11-17 | Palo Alto, CA | 2014 | Hope Through Rigorous Science | |
SambaNova | sambanovasystems.com | Series D | $676,000,000.00 | 2021-04-12 | Palo Alto, CA | 2017 | SambaNova Systems, Inc. provides software solutions. The Company offers building machine learning and big data analytics platforms which enables optimum performance for any ML training, inference, and analytics models. SambaNova Systems serves customers in the United States. | |
Nuro | nuro.ai | Series D | $600,000,000.00 | 2021-11-01 | Mountain View, CA | 2016 | Join us in accelerating the benefits of robotics for everyday life. | |
Nuro | nuro.ai | Series D | $600,000,000.00 | 2021-11-01 | Mountain View, CA | 2016 | Join us in accelerating the benefits of roboti |
library(dplyr) | |
library(forcats) | |
library(ggplot2) | |
library(palmerpenguins) | |
library(ggtext) | |
library(colorspace) | |
library(ragg) | |
url <- "https://raw.githubusercontent.com/allisonhorst/palmerpenguins/master/man/figures/lter_penguins.png" | |
img <- magick::image_read((url)) |