File size: 9,257 Bytes
9eba44b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | #!/usr/bin/env python3
"""
Generate network data JSON files from GRAIL-Heart analysis outputs.
These JSON files are then loaded by the interactive network explorer.
"""
import json
import pandas as pd
from pathlib import Path
from collections import defaultdict
def load_lr_scores(analysis_dir: Path) -> dict:
"""Load L-R scores from all regions."""
regions = ['AX', 'LA', 'LV', 'RA', 'RV', 'SP']
all_data = {}
for region in regions:
lr_file = analysis_dir / 'tables' / f'{region}_lr_scores.csv'
if lr_file.exists():
df = pd.read_csv(lr_file)
all_data[region] = df
print(f"Loaded {len(df)} L-R pairs for {region}")
else:
print(f"Warning: {lr_file} not found")
return all_data
def build_network_data(df: pd.DataFrame, top_n: int = None, min_score: float = 0.0) -> dict:
"""Build network nodes and edges from L-R score dataframe.
Args:
df: DataFrame with L-R pairs
top_n: If set, only include top N edges by score. None = include all.
min_score: Minimum score threshold
"""
# Detect column names
if 'ligand' in df.columns:
source_col, target_col = 'ligand', 'receptor'
elif 'source' in df.columns:
source_col, target_col = 'source', 'target'
else:
raise ValueError(f"Unknown columns: {df.columns.tolist()}")
# Score column
score_col = None
for col in ['causal_score', 'score', 'weight', 'mean_score']:
if col in df.columns:
score_col = col
break
if score_col is None:
# Use first numeric column
numeric_cols = df.select_dtypes(include=['float64', 'int64']).columns
if len(numeric_cols) > 0:
score_col = numeric_cols[0]
else:
df['score'] = 1.0
score_col = 'score'
# Filter and sort
df_filtered = df[df[score_col] >= min_score].copy()
df_filtered = df_filtered.sort_values(score_col, ascending=False)
# Apply top_n limit if specified
if top_n is not None:
df_filtered = df_filtered.head(top_n)
# Build node set and calculate degrees
node_info = defaultdict(lambda: {'type': set(), 'degree': 0})
for _, row in df_filtered.iterrows():
source = row[source_col]
target = row[target_col]
node_info[source]['type'].add('ligand')
node_info[source]['degree'] += 1
node_info[target]['type'].add('receptor')
node_info[target]['degree'] += 1
# Create nodes list
nodes = []
for gene, info in node_info.items():
if 'ligand' in info['type'] and 'receptor' in info['type']:
node_type = 'dual'
elif 'ligand' in info['type']:
node_type = 'ligand'
else:
node_type = 'receptor'
nodes.append({
'id': gene,
'type': node_type,
'degree': info['degree']
})
# Create edges list
edges = []
for _, row in df_filtered.iterrows():
edges.append({
'source': row[source_col],
'target': row[target_col],
'weight': round(float(row[score_col]), 3)
})
return {
'nodes': nodes,
'edges': edges
}
def build_integrated_network(all_region_data: dict, top_n: int = None) -> dict:
"""Build integrated network from all regions.
Args:
all_region_data: Dict of region -> DataFrame
top_n: If set, only include top N edges. None = include all.
"""
# Combine all data
combined_edges = []
for region, df in all_region_data.items():
# Detect columns
if 'ligand' in df.columns:
source_col, target_col = 'ligand', 'receptor'
elif 'source' in df.columns:
source_col, target_col = 'source', 'target'
else:
continue
# Score column
score_col = None
for col in ['causal_score', 'score', 'weight', 'mean_score']:
if col in df.columns:
score_col = col
break
if score_col is None:
continue
for _, row in df.iterrows():
combined_edges.append({
'source': row[source_col],
'target': row[target_col],
'weight': float(row[score_col]),
'region': region
})
# Sort by weight and take top N (if specified)
combined_edges.sort(key=lambda x: x['weight'], reverse=True)
if top_n is not None:
top_edges = combined_edges[:top_n]
else:
top_edges = combined_edges
# Build nodes
node_info = defaultdict(lambda: {'type': set(), 'degree': 0, 'regions': set()})
for edge in top_edges:
node_info[edge['source']]['type'].add('ligand')
node_info[edge['source']]['degree'] += 1
node_info[edge['source']]['regions'].add(edge['region'])
node_info[edge['target']]['type'].add('receptor')
node_info[edge['target']]['degree'] += 1
node_info[edge['target']]['regions'].add(edge['region'])
nodes = []
for gene, info in node_info.items():
if 'ligand' in info['type'] and 'receptor' in info['type']:
node_type = 'dual'
elif 'ligand' in info['type']:
node_type = 'ligand'
else:
node_type = 'receptor'
nodes.append({
'id': gene,
'type': node_type,
'degree': info['degree'],
'regions': list(info['regions'])
})
edges = [{
'source': e['source'],
'target': e['target'],
'weight': round(e['weight'], 3),
'region': e['region']
} for e in top_edges]
return {
'nodes': nodes,
'edges': edges
}
def main():
# Paths
project_dir = Path(__file__).parent.parent
analysis_dir = project_dir / 'outputs' / 'enhanced_analysis'
output_dir = project_dir / 'outputs' / 'cytoscape' / 'data'
# Create output directory
output_dir.mkdir(parents=True, exist_ok=True)
print("Loading L-R scores from analysis outputs...")
all_data = load_lr_scores(analysis_dir)
if not all_data:
print("No data found! Check paths.")
return
# Generate per-region networks (ALL edges)
all_networks = {}
for region, df in all_data.items():
print(f"\nProcessing {region}...")
# Include ALL edges (top_n=None), no minimum score filter
network = build_network_data(df, top_n=None, min_score=0.0)
all_networks[region] = network
# Save individual region file
region_file = output_dir / f'{region}_network.json'
with open(region_file, 'w') as f:
json.dump(network, f, indent=2)
print(f" Saved {region_file.name}: {len(network['nodes'])} nodes, {len(network['edges'])} edges")
# Generate integrated network (ALL edges from all regions)
print("\nBuilding integrated network...")
integrated = build_integrated_network(all_data, top_n=None)
all_networks['integrated'] = integrated
integrated_file = output_dir / 'integrated_network.json'
with open(integrated_file, 'w') as f:
json.dump(integrated, f, indent=2)
print(f"Saved {integrated_file.name}: {len(integrated['nodes'])} nodes, {len(integrated['edges'])} edges")
# Save combined file for the explorer
combined_file = output_dir / 'all_networks.json'
with open(combined_file, 'w') as f:
json.dump(all_networks, f)
print(f"\nSaved combined data to {combined_file.name}")
# Also generate region metadata
metadata = {
'integrated': {'name': 'Integrated Network', 'cells': 42654, 'description': 'Combined L-R interactions across all cardiac regions'},
'AX': {'name': 'Apex', 'cells': 6497, 'description': 'Cardiac apex - tip of the heart'},
'LA': {'name': 'Left Atrium', 'cells': 5822, 'description': 'Upper left chamber receiving oxygenated blood'},
'LV': {'name': 'Left Ventricle', 'cells': 9626, 'description': 'Main pumping chamber to systemic circulation'},
'RA': {'name': 'Right Atrium', 'cells': 7027, 'description': 'Upper right chamber receiving deoxygenated blood'},
'RV': {'name': 'Right Ventricle', 'cells': 5039, 'description': 'Pumping chamber to pulmonary circulation'},
'SP': {'name': 'Septum', 'cells': 8643, 'description': 'Muscular wall separating left and right chambers'}
}
metadata_file = output_dir / 'metadata.json'
with open(metadata_file, 'w') as f:
json.dump(metadata, f, indent=2)
print(f"\nAll network data generated in {output_dir}")
print("\nTo update the explorer, run:")
print(" python scripts/update_explorer.py")
if __name__ == '__main__':
main()
|