I have changed only two directory names from the original post to be found here
Open account with ngrok.com
Get the autorization code
after creating a free account with ngork
. You will meet with a screen like following
plt.figure(figsize=(8, 8)) | |
df = np.log(variance_trio_df[['var_mean','merged_var']]+1) | |
df.loc[:,'color'] = 'b' | |
df.loc[(df.merged_var - df.var_mean) < -1, 'color'] = 'r' | |
colors = ["b", "r"] | |
customPalette = sns.set_palette(sns.color_palette(colors)) | |
ax = sns.scatterplot( | |
x = 'var_mean', | |
y = 'merged_var', | |
data = df, |
#!/usr/bin/bash | |
tfile=$1 | |
usr=`rg "(\d+\.\d+)user" $tfile -or '$1'` | |
sys=`rg "(\d+\.\d+)system" $tfile -or '$1'` | |
elap=`rg "([\d:\.]+)elapsed" $tfile -or '$1'` | |
mem=`rg "(\d+)maxresident" $tfile -or '$1'` | |
tot_elap=`echo "$elap" | sed -E 's/(.*):(.+):(.+)/\1*3600+\2*60+\3/;s/(.+):(.+)/\1*60+\2/' | bc` |
I hereby claim:
To claim this, I am signing this object:
use ndarray::prelude::*; | |
fn std1d(a: ArrayView1<'_, f64>) -> f64 { | |
let n = a.len() as f64; | |
if n == 0. { | |
return 0.; | |
} | |
let mean = a.sum() / n; | |
(a.fold(0., |acc, &x| acc + (x - mean).powi(2)) / n).sqrt() | |
} |
import glob | |
import pandas as pd | |
import tqdm | |
#from pyfasta import Fasta | |
#%matplotlib inline | |
import matplotlib | |
matplotlib.use('agg') | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
from collections import defaultdict |
SPC s c remove highlight | |
**** Files manipulations key bindings | |
Files manipulation commands (start with ~f~): | |
| Key Binding | Description | | |
|-------------+----------------------------------------------------------------| | |
| ~SPC f c~ | copy current file to a different location | | |
| ~SPC f C d~ | convert file from unix to dos encoding | | |
| ~SPC f C u~ | convert file from dos to unix encoding | |
export PATH="/home/linuxbrew/.linuxbrew/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin:/home/linuxbrew/.linuxbrew/bin/:/home/linuxbrew/.linuxbrew/bin/"
hello
shuf -n 1000 /bio2/home/mferdman/paired.bulk-only > oct_28/file_list\
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
#include "concurrentqueue.h" | |
#include "blockingconcurrentqueue.h" | |
#include <thread> | |
#include <atomic> | |
#include <vector> | |
#include <iostream> | |
using namespace moodycamel ; | |
using namespace std ; |