cvbio icon indicating copy to clipboard operation
cvbio copied to clipboard

That one good idea I had for a new take on FASTQ quality visualization

Open clintval opened this issue 6 years ago • 0 comments

import pandas as pd

import matplotlib.pyplot as plt

df = pd.read_csv("/Users/cvalentine/scratch/fastq-qual/1.csv")
fig, ax = plt.subplots(figsize=(5, 10))
ax.imshow(df.values, aspect='auto')

clintval avatar Dec 08 '19 18:12 clintval