diff --git a/_base_i_o_8cpp__incl.svg b/_base_i_o_8cpp__incl.svg index 90425b00..1a5d4da8 100644 --- a/_base_i_o_8cpp__incl.svg +++ b/_base_i_o_8cpp__incl.svg @@ -1,7 +1,7 @@ - diff --git a/_base_i_o_8cpp__incl_org.svg b/_base_i_o_8cpp__incl_org.svg index dea20360..0e7dbc85 100644 --- a/_base_i_o_8cpp__incl_org.svg +++ b/_base_i_o_8cpp__incl_org.svg @@ -1,7 +1,7 @@ - - diff --git a/_base_i_o_8hpp__dep__incl_org.svg b/_base_i_o_8hpp__dep__incl_org.svg index 16c50c3e..607e5ca5 100644 --- a/_base_i_o_8hpp__dep__incl_org.svg +++ b/_base_i_o_8hpp__dep__incl_org.svg @@ -1,7 +1,7 @@ - - - - - - diff --git a/_channel_8hpp__dep__incl_org.svg b/_channel_8hpp__dep__incl_org.svg index f966dbe9..d24ec534 100644 --- a/_channel_8hpp__dep__incl_org.svg +++ b/_channel_8hpp__dep__incl_org.svg @@ -1,7 +1,7 @@ - - - - - - diff --git a/_container_8hpp__dep__incl_org.svg b/_container_8hpp__dep__incl_org.svg index 2b7d27dc..63246032 100644 --- a/_container_8hpp__dep__incl_org.svg +++ b/_container_8hpp__dep__incl_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - - - - - - - - - - 19class DynamicTable : public Container
20{
21public:
-
28 DynamicTable(const std::string& path,
-
29 std::shared_ptr<BaseIO> io,
-
30 const std::string& description,
-
31 const std::vector<std::string>& colNames);
-
32
-
36 virtual ~DynamicTable();
-
37
-
42 void initialize();
-
43
-
51 void addColumn(const std::string& name,
-
52 const std::string& colDescription,
-
53 std::unique_ptr<VectorData>& vectorData,
-
54 const std::vector<std::string>& values);
-
55
-
62 void addColumn(const std::string& name,
-
63 const std::string& colDescription,
-
64 const std::vector<std::string>& dataset);
-
65
-
71 void setRowIDs(std::unique_ptr<ElementIdentifiers>& elementIDs,
-
72 const std::vector<int>& values);
-
73
-
78 inline std::string getDescription() const { return m_description; }
-
79
-
-
84 virtual const std::vector<std::string>& getColNames() const
-
85 {
-
86 return m_colNames;
-
87 }
+
29 DynamicTable(const std::string& path,
+
30 std::shared_ptr<BaseIO> io,
+
31 const std::string& description,
+
32 const std::vector<std::string>& colNames);
+
33
+
37 virtual ~DynamicTable();
+
38
+
43 void initialize();
+
44
+
52 void addColumn(const std::string& name,
+
53 const std::string& colDescription,
+
54 std::unique_ptr<VectorData>& vectorData,
+
55 const std::vector<std::string>& values);
+
56
+
63 void addColumn(const std::string& name,
+
64 const std::string& colDescription,
+
65 const std::vector<std::string>& dataset);
+
66
+
72 void setRowIDs(std::unique_ptr<ElementIdentifiers>& elementIDs,
+
73 const std::vector<int>& values);
+
74
+
79 inline std::string getDescription() const { return m_description; }
+
80
+
+
85 virtual const std::vector<std::string>& getColNames() const
+
86 {
+
87 return m_colNames;
+
88 }
-
88
-
-
93 virtual void setColNames(const std::vector<std::string>& newColNames)
-
94 {
-
95 m_colNames = newColNames;
-
96 }
+
89
+
+
94 virtual void setColNames(const std::vector<std::string>& newColNames)
+
95 {
+
96 m_colNames = newColNames;
+
97 }
-
97
-
98protected:
-
102 std::string m_description;
-
103
-
107 std::vector<std::string> m_colNames;
-
108};
+
98
+
99protected:
+
103 std::string m_description;
+
104
+
108 std::vector<std::string> m_colNames;
+
109};
-
109} // namespace AQNWB::NWB
+
110} // namespace AQNWB::NWB
Abstract data type for a group storing collections of data and metadata.
Definition Container.hpp:15
Represents a group containing multiple datasets that are aligned on the first dimension.
Definition DynamicTable.hpp:20
-
std::vector< std::string > m_colNames
Names of the columns in the table.
Definition DynamicTable.hpp:107
+
std::vector< std::string > m_colNames
Names of the columns in the table.
Definition DynamicTable.hpp:108
void initialize()
Initializes the DynamicTable object by creating NWB attributes and column names.
Definition DynamicTable.cpp:22
virtual ~DynamicTable()
Destructor.
Definition DynamicTable.cpp:19
void addColumn(const std::string &name, const std::string &colDescription, std::unique_ptr< VectorData > &vectorData, const std::vector< std::string > &values)
Adds a column of vector string data to the table.
Definition DynamicTable.cpp:32
void setRowIDs(std::unique_ptr< ElementIdentifiers > &elementIDs, const std::vector< int > &values)
Adds a column of element identifiers to the table.
Definition DynamicTable.cpp:51
-
std::string getDescription() const
Gets the description of the table.
Definition DynamicTable.hpp:78
-
std::string m_description
Description of the DynamicTable.
Definition DynamicTable.hpp:102
-
virtual void setColNames(const std::vector< std::string > &newColNames)
Sets the column names of the ElectrodeTable.
Definition DynamicTable.hpp:93
-
virtual const std::vector< std::string > & getColNames() const
Gets the column names of the table.
Definition DynamicTable.hpp:84
+
std::string getDescription() const
Gets the description of the table.
Definition DynamicTable.hpp:79
+
std::string m_description
Description of the DynamicTable.
Definition DynamicTable.hpp:103
+
virtual void setColNames(const std::vector< std::string > &newColNames)
Sets the column names of the ElectrodeTable.
Definition DynamicTable.hpp:94
+
virtual const std::vector< std::string > & getColNames() const
Gets the column names of the table.
Definition DynamicTable.hpp:85
DynamicTable(const std::string &path, std::shared_ptr< BaseIO > io, const std::string &description, const std::vector< std::string > &colNames)
Constructor.
Definition DynamicTable.cpp:8
Namespace for all classes related to the NWB data standard.
Definition TimeSeries.hpp:9
diff --git a/_electrical_series_8cpp__incl.svg b/_electrical_series_8cpp__incl.svg index f6b00ac8..fc019866 100644 --- a/_electrical_series_8cpp__incl.svg +++ b/_electrical_series_8cpp__incl.svg @@ -1,7 +1,7 @@ - diff --git a/_electrical_series_8cpp__incl_org.svg b/_electrical_series_8cpp__incl_org.svg index 6cc660c2..cbd38c86 100644 --- a/_electrical_series_8cpp__incl_org.svg +++ b/_electrical_series_8cpp__incl_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - - - diff --git a/_electrode_table_8cpp__incl_org.svg b/_electrode_table_8cpp__incl_org.svg index a9b4a041..0fddbd51 100644 --- a/_electrode_table_8cpp__incl_org.svg +++ b/_electrode_table_8cpp__incl_org.svg @@ -1,7 +1,7 @@ - - - - diff --git a/_electrode_table_8hpp__incl_org.svg b/_electrode_table_8hpp__incl_org.svg index 7197392e..070a7277 100644 --- a/_electrode_table_8hpp__incl_org.svg +++ b/_electrode_table_8hpp__incl_org.svg @@ -1,7 +1,7 @@ - - - - - - diff --git a/_h_d_f5_i_o_8cpp__incl_org.svg b/_h_d_f5_i_o_8cpp__incl_org.svg index 17abdf72..8a6d14fd 100644 --- a/_h_d_f5_i_o_8cpp__incl_org.svg +++ b/_h_d_f5_i_o_8cpp__incl_org.svg @@ -1,7 +1,7 @@ - - - - - - - - diff --git a/_n_w_b_file_8cpp__incl_org.svg b/_n_w_b_file_8cpp__incl_org.svg index fd518ce6..c1cbf9ec 100644 --- a/_n_w_b_file_8cpp__incl_org.svg +++ b/_n_w_b_file_8cpp__incl_org.svg @@ -1,7 +1,7 @@ - - - - diff --git a/_n_w_b_file_8hpp__incl_org.svg b/_n_w_b_file_8hpp__incl_org.svg index 63b05e79..ca39c0fe 100644 --- a/_n_w_b_file_8hpp__incl_org.svg +++ b/_n_w_b_file_8hpp__incl_org.svg @@ -1,7 +1,7 @@ - - diff --git a/_recording_containers_8cpp__incl_org.svg b/_recording_containers_8cpp__incl_org.svg index 1742c4b1..af7b18c1 100644 --- a/_recording_containers_8cpp__incl_org.svg +++ b/_recording_containers_8cpp__incl_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - - - - - diff --git a/_time_series_8hpp__dep__incl_org.svg b/_time_series_8hpp__dep__incl_org.svg index c1d57fd8..3774d265 100644 --- a/_time_series_8hpp__dep__incl_org.svg +++ b/_time_series_8hpp__dep__incl_org.svg @@ -1,7 +1,7 @@ - - - - diff --git a/_types_8hpp__dep__incl_org.svg b/_types_8hpp__dep__incl_org.svg index cfd00899..eb9bd153 100644 --- a/_types_8hpp__dep__incl_org.svg +++ b/_types_8hpp__dep__incl_org.svg @@ -1,7 +1,7 @@ - - - - - - diff --git a/_utils_8hpp__incl_org.svg b/_utils_8hpp__incl_org.svg index d6d3dc6a..4b5f68d9 100644 --- a/_utils_8hpp__incl_org.svg +++ b/_utils_8hpp__incl_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - - - diff --git a/class_a_q_n_w_b_1_1_base_data_type_a18d42dba7074fb4cdac771deef6c051b_icgraph_org.svg b/class_a_q_n_w_b_1_1_base_data_type_a18d42dba7074fb4cdac771deef6c051b_icgraph_org.svg index deac3a41..cfcb6557 100644 --- a/class_a_q_n_w_b_1_1_base_data_type_a18d42dba7074fb4cdac771deef6c051b_icgraph_org.svg +++ b/class_a_q_n_w_b_1_1_base_data_type_a18d42dba7074fb4cdac771deef6c051b_icgraph_org.svg @@ -1,7 +1,7 @@ - - diff --git a/class_a_q_n_w_b_1_1_base_data_type_abb1e4b6b662308e48b6b4a7ad989d157_icgraph_org.svg b/class_a_q_n_w_b_1_1_base_data_type_abb1e4b6b662308e48b6b4a7ad989d157_icgraph_org.svg index d5c8e13c..bb0286f1 100644 --- a/class_a_q_n_w_b_1_1_base_data_type_abb1e4b6b662308e48b6b4a7ad989d157_icgraph_org.svg +++ b/class_a_q_n_w_b_1_1_base_data_type_abb1e4b6b662308e48b6b4a7ad989d157_icgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/class_a_q_n_w_b_1_1_h_d_f5_1_1_h_d_f5_i_o_a5c2d8f716084d9ac0c1f6d6c79b6193e_icgraph_org.svg b/class_a_q_n_w_b_1_1_h_d_f5_1_1_h_d_f5_i_o_a5c2d8f716084d9ac0c1f6d6c79b6193e_icgraph_org.svg index 0d2806fa..783ebd0e 100644 --- a/class_a_q_n_w_b_1_1_h_d_f5_1_1_h_d_f5_i_o_a5c2d8f716084d9ac0c1f6d6c79b6193e_icgraph_org.svg +++ b/class_a_q_n_w_b_1_1_h_d_f5_1_1_h_d_f5_i_o_a5c2d8f716084d9ac0c1f6d6c79b6193e_icgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_container__inherit__graph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_container__inherit__graph_org.svg index db90ebc3..5471a217 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_container__inherit__graph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_container__inherit__graph_org.svg @@ -1,7 +1,7 @@ - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_container_a33ba8c1d37cae843106d3d3668d6523c_icgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_container_a33ba8c1d37cae843106d3d3668d6523c_icgraph_org.svg index 6983704b..5cae1c44 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_container_a33ba8c1d37cae843106d3d3668d6523c_icgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_container_a33ba8c1d37cae843106d3d3668d6523c_icgraph_org.svg @@ -1,7 +1,7 @@ - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_container_ad2f86adb81cafb2a3ad1a31c878185fd_icgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_container_ad2f86adb81cafb2a3ad1a31c878185fd_icgraph_org.svg index 3ebf2ccd..cdae5954 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_container_ad2f86adb81cafb2a3ad1a31c878185fd_icgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_container_ad2f86adb81cafb2a3ad1a31c878185fd_icgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - - pathThe location of the table in the file. ioA shared pointer to the IO object. - descriptionThe description of the table (optional). + descriptionThe description of the table (optional). + colNamesNames of the columns in the table diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table__coll__graph.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table__coll__graph.svg index b5920be5..75c47c4e 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table__coll__graph.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table__coll__graph.svg @@ -1,7 +1,7 @@ - - - - - - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_a76fea09d6ebe8047d7fe9878f49888d9_cgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_a76fea09d6ebe8047d7fe9878f49888d9_cgraph_org.svg index f77ed72c..fc5f5426 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_a76fea09d6ebe8047d7fe9878f49888d9_cgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_a76fea09d6ebe8047d7fe9878f49888d9_cgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_a87a6f025f60871775113af8314e94519_icgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_a87a6f025f60871775113af8314e94519_icgraph_org.svg index 39020bcc..7166ebe0 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_a87a6f025f60871775113af8314e94519_icgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_a87a6f025f60871775113af8314e94519_icgraph_org.svg @@ -1,7 +1,7 @@ - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_acc846138e2c59fb82f2c11ed3262b9ae_icgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_acc846138e2c59fb82f2c11ed3262b9ae_icgraph_org.svg index 8d551f99..f52ebab0 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_acc846138e2c59fb82f2c11ed3262b9ae_icgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_dynamic_table_acc846138e2c59fb82f2c11ed3262b9ae_icgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_electrical_series_a59ecd5ceca61b33a77a11579369e596e_cgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_electrical_series_a59ecd5ceca61b33a77a11579369e596e_cgraph_org.svg index 3ed1dadd..34ec1d6d 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_electrical_series_a59ecd5ceca61b33a77a11579369e596e_cgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_electrical_series_a59ecd5ceca61b33a77a11579369e596e_cgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_electrode_table_ab91b67e0f0a5dbe34d8f86efecf35de8_cgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_electrode_table_ab91b67e0f0a5dbe34d8f86efecf35de8_cgraph_org.svg index f24a5809..3181ea99 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_electrode_table_ab91b67e0f0a5dbe34d8f86efecf35de8_cgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_electrode_table_ab91b67e0f0a5dbe34d8f86efecf35de8_cgraph_org.svg @@ -1,7 +1,7 @@ - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_electrode_table_af125b9b5d7a79d414b75998c6b52156b_cgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_electrode_table_af125b9b5d7a79d414b75998c6b52156b_cgraph_org.svg index b064487a..78528ea8 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_electrode_table_af125b9b5d7a79d414b75998c6b52156b_cgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_electrode_table_af125b9b5d7a79d414b75998c6b52156b_cgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_n_w_b_file_a109f4656270a194464ac9287bc4f0b6c_cgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_n_w_b_file_a109f4656270a194464ac9287bc4f0b6c_cgraph_org.svg index 7b62d21a..bf72ba33 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_n_w_b_file_a109f4656270a194464ac9287bc4f0b6c_cgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_n_w_b_file_a109f4656270a194464ac9287bc4f0b6c_cgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_n_w_b_file_a5cb71b4353e1d5d764a6f5cf02a53981_cgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_n_w_b_file_a5cb71b4353e1d5d764a6f5cf02a53981_cgraph_org.svg index 9bd17d48..b7c9206e 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_n_w_b_file_a5cb71b4353e1d5d764a6f5cf02a53981_cgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_n_w_b_file_a5cb71b4353e1d5d764a6f5cf02a53981_cgraph_org.svg @@ -1,7 +1,7 @@ - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_recording_containers_a042fd80c71e0ba9c70a4aaadd4bc21b4_cgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_recording_containers_a042fd80c71e0ba9c70a4aaadd4bc21b4_cgraph_org.svg index d69496a8..72998e97 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_recording_containers_a042fd80c71e0ba9c70a4aaadd4bc21b4_cgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_recording_containers_a042fd80c71e0ba9c70a4aaadd4bc21b4_cgraph_org.svg @@ -1,7 +1,7 @@ - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_recording_containers_a12ffd532fb323c79c63f3a1d110dc5e0_cgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_recording_containers_a12ffd532fb323c79c63f3a1d110dc5e0_cgraph_org.svg index 2a334c22..65bbd398 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_recording_containers_a12ffd532fb323c79c63f3a1d110dc5e0_cgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_recording_containers_a12ffd532fb323c79c63f3a1d110dc5e0_cgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_spike_event_series_a7d3c4e9c731f330c2c2eda928f9c453f_cgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_spike_event_series_a7d3c4e9c731f330c2c2eda928f9c453f_cgraph_org.svg index a6d5c9e1..16fd48d9 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_spike_event_series_a7d3c4e9c731f330c2c2eda928f9c453f_cgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_spike_event_series_a7d3c4e9c731f330c2c2eda928f9c453f_cgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_time_series_a14d9d49c997dd0f3b6232b397192d338_icgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_time_series_a14d9d49c997dd0f3b6232b397192d338_icgraph_org.svg index 981db22d..37f87828 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_time_series_a14d9d49c997dd0f3b6232b397192d338_icgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_time_series_a14d9d49c997dd0f3b6232b397192d338_icgraph_org.svg @@ -1,7 +1,7 @@ - - - - diff --git a/class_a_q_n_w_b_1_1_n_w_b_1_1_time_series_a927fb3e7da8259f175bdb19820e52471_icgraph_org.svg b/class_a_q_n_w_b_1_1_n_w_b_1_1_time_series_a927fb3e7da8259f175bdb19820e52471_icgraph_org.svg index 50cc6e73..c1a5c5e3 100644 --- a/class_a_q_n_w_b_1_1_n_w_b_1_1_time_series_a927fb3e7da8259f175bdb19820e52471_icgraph_org.svg +++ b/class_a_q_n_w_b_1_1_n_w_b_1_1_time_series_a927fb3e7da8259f175bdb19820e52471_icgraph_org.svg @@ -1,7 +1,7 @@ - - - - - - - - - Developer Mode Targets @@ -135,8 +131,9 @@

Requirements

-

Please ensure that the required libraries described in the User Requirements section are installed.

-

For developers we also recommend to install the following optional command line tools used for generating the documentation, for code quality checks, and for debugging.

+

Please ensure that the required libraries described in the User Requirements section are installed and clone the latest AqNWB source via:

+
git clone https://github.com/NeurodataWithoutBorders/aqnwb.git
+

For developers we also recommend to install the following optional command line tools used for generating the documentation, for code quality checks, and for debugging.

+Target options

-

+

+Source

+

The source code for AqNWB is available online via the AqNWB GitHub repository. To checkout the latest developer version, clone the repository via:

+
git clone https://github.com/NeurodataWithoutBorders/aqnwb.git
+

Build

Here are the steps for building in release mode with a multi-configuration generator:

cmake -S . -B build
diff --git a/userdocs.js b/userdocs.js index ebf998a4..70b9cbbf 100644 --- a/userdocs.js +++ b/userdocs.js @@ -2,6 +2,7 @@ var userdocs = [ [ "Installing AqNWB", "user_install_page.html", [ [ "Requirements", "user_install_page.html#user_requirements_sec", null ], + [ "Source", "user_install_page.html#userbuild_source_sec", null ], [ "Build", "user_install_page.html#userbuild_build_sec", null ], [ "Install", "user_install_page.html#userbuild_install_sec", null ] ] ],