From 21effe95b399f34c3c39e23b044a0067219b5309 Mon Sep 17 00:00:00 2001 From: Jochem Smit Date: Mon, 2 Jan 2023 12:27:00 +0100 Subject: [PATCH] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 35d5a07..7d18793 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,10 @@ vault.fetch_dataset("20221007_1530_SecA_Krishnamurthy") ds = vault.load_dataset("20221007_1530_SecA_Krishnamurthy") # Load the FD control of the first 'state' in the dataset. -fd_control = ds.parser.load_peptides(0, 'FD_control') +fd_control = ds.load_peptides(0, "FD_control") # Load the corresponding experimental peptides. -peptides = ds.parser.load_peptides(0, 'experiment') +peptides = ds.load_peptides(0, "experiment") ```