You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To standardise the development process in cg, we should agree on some naming conventions for variables of certain types. The following table is a draft for the conventions and below is a discussion forum to decide on them. The last column determines the status of the discussion. When a decision has been made, it will be reflected in the coding guidelines Atlas page. Once a naming convention is agreed upon, all developers are expected to follow it. The developers can name variables under their criteria if no agreed naming convention exists for a variable type.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
To standardise the development process in cg, we should agree on some naming conventions for variables of certain types. The following table is a draft for the conventions and below is a discussion forum to decide on them. The last column determines the status of the discussion. When a decision has been made, it will be reflected in the coding guidelines Atlas page. Once a naming convention is agreed upon, all developers are expected to follow it. The developers can name variables under their criteria if no agreed naming convention exists for a variable type.
application
application = Application(...)
application_version
application_version = application.version
analysis
analysis = Analysis(...)
case
case = Family(...)
flow_cell
flow_cell = Flowcell(...)
sample
sample = Sample(...)
_entry_id
sample_entry_id: int = sample.id
_id
sample_id: int = sample.internal_id
flow_cell
flow_cell = FlowCellDirectoryData(...)
_path
flow_cell_path = Path(...)
_dir
flow_cell_dir: str = "/home/proj/..."
Beta Was this translation helpful? Give feedback.
All reactions