# NuCDB CSV Files

- All CSV files are annotated with minimal metadata at the top of the file
- Metadata content starts with '#'
- Current version contains 8 rows
  - ReferenceID
  - NucleicAcid
  - NucleicAcidSecondaryStructure
  - WavelengthRange
  - Y-axis Unit
  - CuvetteLength
  - Quality
  - Normalised

- For programming and analysis, ignore commented lines in Python pandas

```python
import pandas as pd

data = pd.read_csv("REFID_0000.csv", sep=",", header=0, comment="#")

# This will load the files with a uniform column headers
#   - Wavelength
#   - CD_Units
```
