fix: Change CSV serialization headers
Makes for easier imports into Cellario CP orders shoutout to my employer ;)
This commit is contained in:
parent
7defd8ff08
commit
94386a0485
|
@ -4,11 +4,11 @@ use crate::{plate::PlateFormat, transfer::Transfer, util::num_to_letters};
|
||||||
|
|
||||||
#[derive(Serialize, Debug, Clone)]
|
#[derive(Serialize, Debug, Clone)]
|
||||||
pub struct TransferRecord {
|
pub struct TransferRecord {
|
||||||
#[serde(rename = "Source Plate")]
|
#[serde(rename = "Source Barcode")]
|
||||||
pub source_plate: String,
|
pub source_plate: String,
|
||||||
#[serde(rename = "Source Well")]
|
#[serde(rename = "Source Well")]
|
||||||
pub source_well: String,
|
pub source_well: String,
|
||||||
#[serde(rename = "Dest Plate")]
|
#[serde(rename = "Dest Barcode")]
|
||||||
pub destination_plate: String,
|
pub destination_plate: String,
|
||||||
#[serde(rename = "Destination Well")]
|
#[serde(rename = "Destination Well")]
|
||||||
pub destination_well: String,
|
pub destination_well: String,
|
||||||
|
|
Loading…
Reference in New Issue