Skip to content

Commit

Permalink
add metabolites concentration from YMDB
Browse files Browse the repository at this point in the history
  • Loading branch information
cheng-yu-zhang committed Mar 6, 2024
1 parent e1d5435 commit 3b7ae52
Show file tree
Hide file tree
Showing 16,045 changed files with 181 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
35 changes: 35 additions & 0 deletions add_conc/code/add_conc.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
modelWithConc = importModel('../../model/yeast-GEM.xml');
data = readtable('../data/allConcData.xlsx');
data = table2cell(data);
metConc.allConc = cell(length(modelWithConc.metNames), 1);
metConc.maxConc = cell(length(modelWithConc.metNames), 1);
metConc.minConc = cell(length(modelWithConc.metNames), 1);

met.name = modelWithConc.metNames;
met.kegg = {};

for i = 1:length(met.name)
idx = find(strcmp('kegg.compound',modelWithConc.metMiriams{i, 1}.name));
if idx
met.kegg{i, 1} = modelWithConc.metMiriams{i, 1}.value{idx, 1};
end
clear idx
end

metWithConc = {};
for j = 2:870
keggId = data{2, j};
idx = find(strcmp(keggId, met.kegg));
if idx
%fprintf(keggId)
metWithConc{end+1} = keggId;
for id= 1:length(idx)
metConc.allConc{idx(id), 1} = data{3, j};
metConc.maxConc{idx(id), 1} = data{4, j};
metConc.minConc{idx(id), 1} = data{5, j};
end
end
end
fprintf('In total, %d mets have concentration range.', length(metWithConc))
modelWithConc.metConc = metConc;
save('../modelWithConc.mat', 'modelWithConc');
58 changes: 58 additions & 0 deletions add_conc/code/get_YMDB_data.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
'''
@qqlaoxia 20240306
'''

import argparse
import requests
import pandas as pd
import json
import os
import time
def extract_data(i):
cmp='YMDB'+'{:05d}'.format(i)
# Send an HTTP request to get the content of the web page
url = r'https://www.ymdb.ca/compounds/'+cmp
response = requests.get(url)
web_content = response.text
data = json.loads(web_content)

if isinstance(data, dict):
data = [data]
extracted_data = []
for item in data:
row_data = {key: value for key, value in item.items()}
extracted_data.append(row_data)

df = pd.DataFrame(extracted_data)
# if not os.path.exists(cmp):
# os.mkdir(cmp)
#
# # Save the DataFrame to an Excel file
# excel_path = './%s/%s.xlsx' %(cmp,cmp)
# df.to_excel(excel_path, index=False)
# print(f'Data saved to {excel_path}')


# % rearrange data
df_transposed = df.T.reset_index()
df_transposed.columns = ['Key', 'Content']

# Save the transposed DataFrame to a new Excel file
transposed_excel_path = f'../data/YMDB/{cmp}_transposed.xlsx'
df_transposed.to_excel(transposed_excel_path, index=False, header=True)
print(f'Transposed data saved to {transposed_excel_path}')
time.sleep(5)


if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('-i', help='input number',type=int)
args = parser.parse_args()
extract_data(args.i)
# It is suggested to used parallel arithmetic in matlab.
# parfor i=1:16338
# system(['python main.py -i ',num2str(i)]);
# end



88 changes: 88 additions & 0 deletions add_conc/code/organise_data.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
####################################################################
# get concentration
# The concentration range is calculated according to the following logic
# For example: In YMDB, three conc is recorded for glutamine ('17140.0 ± 1971.0 umol/L', '2500.0 ± 500.0 umol/L', '15000.0 ± 0.0 umol/L')
# maximal conc: The maximum concentration plus the corresponding error. In this case, is "17140.0 + 1971.0 umol/L"
# minimal conc: The minimum concentration minus the corresponding error. In this case, is "2500.0 - 500.0 umol/L"


import os
import numpy as np
import pandas as pd
import re


def get_conc(rawconc):
concSplit = rawconc.split('}, ')
# unit: umol/L
all_conc = []
# unit: mol/L
maxmin = []
for c in concSplit:
regex = r'\'([^\']*)\''
result = re.findall(regex, c)
try:
if (result[5] == 'µM') or (result[5] == 'uM') or (result[5] == 'umol/L'):
all_conc.append(str(result[3] + ' ± ' + result[7] + ' umol/L'))
maxmin.append((float(result[3]) - float(result[7]))*10**(-6))
maxmin.append((float(result[3]) + float(result[7]))*10**(-6))
except IndexError:
pass
return all_conc, maxmin

# load data and put them together
folder_path = r"../data/YMDB"
fileName = os.listdir(folder_path)
data = pd.DataFrame()
for fn in fileName:
file_path = os.path.join(folder_path, fn)
file = pd.read_excel(file_path)
id = file.iloc[0, 1]
if id == 'YMDB00001':
data.index = list(file.loc[:, 'Key'])[1:]
else:
pass
data.loc[:, id] = list(file.loc[:, 'Content'])[1:]
print(fn)
# data.to_csv(r'../data/allConcData.csv')

# compute maximal conc and minimal conc
conc = pd.DataFrame(index=['conc', 'maxConc', 'minConc'], columns=data.columns)
for i in range(len(data.columns)):
print(i)
rawconc = data.iloc[44, i]
all_conc, maxmin = get_conc(rawconc)
if len(all_conc) != 0:
conc.loc['conc', data.columns[i]] = all_conc
conc.loc['maxConc', data.columns[i]] = np.max(maxmin)
conc.loc['minConc', data.columns[i]] = np.min(maxmin)
else:
pass

data = pd.concat([data, conc], axis=0)
newdata = data.loc[['name', 'chebi_id', 'kegg_id', 'conc', 'maxConc', 'minConc']]
cleaned_data = newdata.dropna(axis=1, subset=['conc'])
cleaned_data.to_excel('../data/allConcData.xlsx')
# # test unit
#
# def check_unit(rawconc):
# concSplit = rawconc.split('}, ')
# unit = []
# try:
# for c in concSplit:
# regex = r'\'([^\']*)\''
# result = re.findall(regex, c)
# unit.append(result[5])
# except:
# pass
# return unit
#
# all_unit= []
# for i in range(len(data.columns)):
# rawconc = data.iloc[44, i]
# unit = check_unit(rawconc)
# for u in unit:
# if u not in all_unit:
# all_unit.append(u)
# print(data.columns[i])
# print(u)
Binary file added add_conc/data/YMDB/YMDB00001_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00002_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00003_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00004_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00005_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00006_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00007_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00008_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00009_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00010_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00011_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00012_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00013_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00014_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00015_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00016_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00017_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00018_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00019_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00020_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00021_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00022_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00023_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00024_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00025_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00026_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00027_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00028_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00029_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00030_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00031_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00032_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00033_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00034_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00035_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00036_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00037_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00038_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00039_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00040_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00041_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00042_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00043_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00044_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00045_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00046_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00047_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00048_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00049_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00050_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00051_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00052_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00053_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00054_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00055_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00056_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00057_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00058_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00059_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00060_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00061_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00062_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00063_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00064_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00065_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00066_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00067_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00068_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00069_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00070_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00071_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00072_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00073_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00074_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00075_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00076_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00077_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00078_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00079_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00080_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00081_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00082_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00083_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00084_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00085_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00086_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00087_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00088_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00089_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00090_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00091_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00092_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00093_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00094_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00095_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00096_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00097_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00098_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00099_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00100_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00101_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00102_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00103_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00104_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00105_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00106_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00107_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00108_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00109_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00110_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00111_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00112_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00113_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00114_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00115_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00116_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00117_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00118_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00119_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00120_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00121_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00122_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00123_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00124_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00125_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00126_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00127_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00128_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00129_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00130_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00131_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00132_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00133_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00134_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00135_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00136_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00137_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00138_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00139_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00140_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00141_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00142_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00143_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00144_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00145_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00146_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00147_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00148_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00149_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00150_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00151_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00152_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00153_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00154_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00155_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00156_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00157_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00158_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00159_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00160_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00161_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00162_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00163_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00164_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00165_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00166_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00167_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00168_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00169_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00170_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00171_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00172_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00173_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00174_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00175_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00177_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00178_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00179_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00180_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00181_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00182_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00183_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00184_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00185_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00186_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00187_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00188_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00189_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00190_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00191_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00192_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00193_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00194_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00195_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00196_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00198_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00199_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00200_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00201_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00202_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00203_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00204_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00205_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00206_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00207_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00208_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00209_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00210_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00211_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00212_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00213_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00214_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00215_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00216_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00218_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00219_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00220_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00221_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00222_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00223_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00224_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00225_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00226_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00227_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00229_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00230_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00231_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00232_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00233_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00234_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00235_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00236_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00238_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00239_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00241_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00242_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00243_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00245_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00246_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00247_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00248_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00249_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00250_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00251_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00252_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00253_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00254_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00255_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00256_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00257_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00258_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00259_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00260_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00261_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00262_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00263_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00264_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00265_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00266_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00267_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00268_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00269_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00270_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00271_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00272_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00273_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00274_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00275_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00276_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00277_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00278_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00279_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00280_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00281_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00282_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00283_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00284_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00285_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00286_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00287_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00288_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00289_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00290_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00291_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00292_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00293_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00294_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00295_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00296_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00297_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00298_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00299_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00300_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00301_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00302_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00303_transposed.xlsx
Binary file not shown.
Binary file added add_conc/data/YMDB/YMDB00304_transposed.xlsx
Binary file not shown.
Loading

0 comments on commit 3b7ae52

Please sign in to comment.