Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OBITools3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
23
Issues
23
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
OBITools
OBITools3
Commits
d53c16cf
Commit
d53c16cf
authored
Aug 10, 2015
by
celinemercier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Functions and files for OBIDMS columns with the type OBI_FLOAT
parent
66f39723
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
163 additions
and
1 deletion
+163
-1
python/obitools3/obidms/obidmscolumn/capidmscolumn.pyx
python/obitools3/obidms/obidmscolumn/capidmscolumn.pyx
+11
-1
python/obitools3/obidms/obidmscolumn/obidmscolumn_float/__init__.py
...tools3/obidms/obidmscolumn/obidmscolumn_float/__init__.py
+0
-0
python/obitools3/obidms/obidmscolumn/obidmscolumn_float/capidmscolumn_float.cfiles
...bidmscolumn/obidmscolumn_float/capidmscolumn_float.cfiles
+16
-0
python/obitools3/obidms/obidmscolumn/obidmscolumn_float/capidmscolumn_float.pxd
...s/obidmscolumn/obidmscolumn_float/capidmscolumn_float.pxd
+7
-0
python/obitools3/obidms/obidmscolumn/obidmscolumn_float/capidmscolumn_float.pyx
...s/obidmscolumn/obidmscolumn_float/capidmscolumn_float.pyx
+30
-0
src/obidmscolumn_float.c
src/obidmscolumn_float.c
+40
-0
src/obidmscolumn_float.h
src/obidmscolumn_float.h
+59
-0
No files found.
python/obitools3/obidms/obidmscolumn/capidmscolumn.pyx
View file @
d53c16cf
...
...
@@ -2,6 +2,7 @@
from
.capidmscolumn
cimport
*
from
obitools3.obidms.obidmscolumn.obidmscolumn_int.capidmscolumn_int
import
OBIDMS_column_int
from
obitools3.obidms.obidmscolumn.obidmscolumn_float.capidmscolumn_float
import
OBIDMS_column_float
cdef
class
OBIDMS_column
:
...
...
@@ -83,7 +84,10 @@ cdef class OBIDMS_column:
dms
=
obi_dms
(
dms_name_b
)
if
type
is
None
:
type
=
obi_column_get_data_type_from_name
(
dms
,
column_name_b
)
if
create
:
print
(
"A data type must be specified"
)
else
:
type
=
obi_column_get_data_type_from_name
(
dms
,
column_name_b
)
if
type
==
1
:
column
=
OBIDMS_column_int
(
dms_name
,
column_name
,
...
...
@@ -91,6 +95,12 @@ cdef class OBIDMS_column:
type
,
nb_elements
,
nb_elements_per_line
,
elements_names
)
elif
type
==
2
:
column
=
OBIDMS_column_float
(
dms_name
,
column_name
,
create
,
version_number
,
type
,
nb_elements
,
nb_elements_per_line
,
elements_names
)
else
:
"Problem with the data type"
...
...
python/obitools3/obidms/obidmscolumn/obidmscolumn_float/__init__.py
0 → 100644
View file @
d53c16cf
python/obitools3/obidms/obidmscolumn/obidmscolumn_float/capidmscolumn_float.cfiles
0 → 100644
View file @
d53c16cf
../../../../../src/obidmscolumn_float.c
../../../../../src/obidmscolumn_float.h
../../../../../src/obidmscolumn.h
../../../../../src/obidmscolumn.c
../../../../../src/obidmscolumndir.h
../../../../../src/obidmscolumndir.c
../../../../../src/obidms.h
../../../../../src/obidms.c
../../../../../src/obierrno.h
../../../../../src/obierrno.c
../../../../../src/obilittlebigman.h
../../../../../src/obilittlebigman.c
../../../../../src/obitypes.h
../../../../../src/obitypes.c
../../../../../src/private_at_functions.h
../../../../../src/private_at_functions.c
python/obitools3/obidms/obidmscolumn/obidmscolumn_float/capidmscolumn_float.pxd
0 → 100644
View file @
d53c16cf
from
obitools3.obidms.obidmscolumn.capidmscolumn
cimport
*
cdef
extern
from
"obidmscolumn_float.h"
nogil
:
int
obi_column_set_float
(
OBIDMS_column_p
column
,
size_t
line_nb
,
size_t
element_idx
,
obifloat_t
value
)
obifloat_t
obi_column_get_float
(
OBIDMS_column_p
column
,
size_t
line_nb
,
size_t
element_idx
)
python/obitools3/obidms/obidmscolumn/obidmscolumn_float/capidmscolumn_float.pyx
0 → 100644
View file @
d53c16cf
#cython: language_level=3
from
.capidmscolumn_float
cimport
*
cdef
class
OBIDMS_column_float
(
OBIDMS_column
)
:
def
set_item
(
self
,
line_nb
,
element_name
,
value
):
if
element_name
!=
""
:
element_idx
=
self
.
get_element_index_from_name
(
element_name
)
else
:
if
obi_column_get_nb_elements_per_line
(
self
.
pointer
)
==
1
:
element_idx
=
0
else
:
print
(
"An element name must be specified"
)
return
-
1
return
obi_column_set_float
(
self
.
pointer
,
line_nb
,
element_idx
,
value
)
def
get_item
(
self
,
line_nb
,
element_name
):
if
element_name
!=
""
:
element_idx
=
self
.
get_element_index_from_name
(
element_name
)
else
:
if
obi_column_get_nb_elements_per_line
(
self
.
pointer
)
==
1
:
element_idx
=
0
else
:
print
(
"An element name must be specified"
)
return
-
1
return
obi_column_get_float
(
self
.
pointer
,
line_nb
,
element_idx
)
\ No newline at end of file
src/obidmscolumn_float.c
0 → 100644
View file @
d53c16cf
/****************************************************************************
* OBIDMS_column_float functions *
****************************************************************************/
/**
* @file obidsmcolumn_float.c
* @author Celine Mercier
* @date August 10th 2015
* @brief Functions handling OBIColumns containing data with the OBIType OBI_FLOAT.
*/
#include <stdlib.h>
#include <stdio.h>
#include "obidmscolumn.h"
#include "obitypes.h"
#include "obierrno.h"
#include "obidebug.h"
/**********************************************************************
*
* D E F I N I T I O N O F T H E P U B L I C F U N C T I O N S
*
**********************************************************************/
int
obi_column_set_float
(
OBIDMS_column_p
column
,
size_t
line_nb
,
size_t
element_idx
,
obifloat_t
value
)
{
// when/where check if can write?
*
(((
obifloat_t
*
)
(
column
->
data
))
+
(
line_nb
*
((
column
->
header
)
->
nb_elements_per_line
))
+
element_idx
)
=
value
;
return
0
;
}
obifloat_t
obi_column_get_float
(
OBIDMS_column_p
column
,
size_t
line_nb
,
size_t
element_idx
)
{
return
*
(((
obifloat_t
*
)
(
column
->
data
))
+
(
line_nb
*
((
column
->
header
)
->
nb_elements_per_line
))
+
element_idx
);
}
src/obidmscolumn_float.h
0 → 100644
View file @
d53c16cf
/****************************************************************************
* OBIDMS_column_float header file *
****************************************************************************/
/**
* @file obidsmcolumn_float.h
* @author Celine Mercier
* @date August 10th 2015
* @brief Header file for the functions handling OBIColumns containing data with the OBIType OBI_FLOAT.
*/
#include <stdlib.h>
#include <stdio.h>
#include "obidmscolumn.h"
#include "obitypes.h"
/**
* @brief Sets a value in an OBIDMS column containing data with the type OBI_FLOAT.
*
* @param column a pointer as returned by obi_create_column()
* @warning Pointers returned by obi_open_column() don't allow writing.
*
* @param line_nb the number of the line where the value should be set
*
* @param element_idx the index of the element that should be set in the line
*
* @param value the value that should be set
*
* @return an integer value indicating the success of the operation.
*
* @retvalue 0 on success
* @retvalue -1 on failure and the `obi_errno` variable is set.
*
* @since August 2015
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
int
obi_column_set_float
(
OBIDMS_column_p
column
,
size_t
line_nb
,
size_t
element_idx
,
obifloat_t
value
);
/**
* @brief Recovers a value in an OBIDMS column containing data with the type OBI_FLOAT.
*
* @param column a pointer as returned by obi_create_column()
*
* @param line_nb the number of the line where the value should be recovered
*
* @param element_idx the index of the element that should be recovered in the line
*
* @return the recovered value
*
* @since August 2015
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
obifloat_t
obi_column_get_float
(
OBIDMS_column_p
column
,
size_t
line_nb
,
size_t
element_idx
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment