Experimental Data Format
Define and validate cryopreservation experimental data structures
Temperature Profile
Cryoprotectant Solution
Click "Generate Data Format" to create a standardized data structure
API Integration
Integrate WIA-CRYO-010 with your research systems
TypeScript SDK Example
import { CryoResearchClient, ExperimentData } from '@wia/cryo-010';
const client = new CryoResearchClient({
apiKey: 'your-api-key',
endpoint: 'https://api.wia.org/cryo-010'
});
// Create experiment data
const experiment: ExperimentData = {
sampleId: 'CRYO-2025-001',
type: 'cell',
temperature: {
initial: 37,
final: -196,
coolingRate: -1
},
cryoprotectant: {
DMSO: 10,
FBS: 20,
Medium: 70
}
};
// Submit data
await client.submitExperiment(experiment);
// Query viability
const viability = await client.calculateViability({
totalCells: 1000000,
viableCells: 850000
});
console.log(`Viability: ${viability.rate}%`);
REST API Endpoints
API response will appear here
Compliance Testing
Validate data against WIA-CRYO-010 standards
Test Scenarios
Sample Data Input
Test Results
Test results will appear here