Skip to content
Snippets Groups Projects

Filling XLSX: Everything except multiple choice.

Merged Daniel Hornung requested to merge f-json-table into dev
All threads resolved!
Compare and Show latest version
10 files
+ 47
46
Compare changes
  • Side-by-side
  • Inline
Files
10
@@ -16,19 +16,16 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from typing import TYPE_CHECKING
import caosdb as db
from caosadvancedtools.cfood import (AbstractFileCFood, assure_has_property,
assure_object_is_in_list)
from caosadvancedtools.cfood import (AbstractFileCFood, assure_has_description,
assure_has_parent, assure_has_property,
assure_object_is_in_list, get_entity)
from caosadvancedtools.read_md_header import get_header
from .generic_pattern import full_pattern
from .utils import parse_responsibles, reference_records_corresponding_to_files
from .withreadme import DATAMODEL as dm
from .withreadme import RESULTS, REVISIONOF, WithREADME, get_glob
if TYPE_CHECKING and sys.version_info > (3, 7):
from typing import Tuple
from .withreadme import RESULTS, REVISIONOF, SCRIPTS, WithREADME, get_glob
class ExperimentCFood(AbstractFileCFood, WithREADME):
@@ -43,9 +40,6 @@ class ExperimentCFood(AbstractFileCFood, WithREADME):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.project = db.Record()
self.experiment = db.Record()
self.people = []
WithREADME.__init__(self)
self.name_map = {},
@@ -58,7 +52,7 @@ class ExperimentCFood(AbstractFileCFood, WithREADME):
self.find_referenced_files([RESULTS])
@staticmethod
def create_identifiable_experiment(match) -> Tuple[db.Record, db.Record]:
def create_identifiable_experiment(match):
# create the project identifiable
name = ExperimentCFood.name_beautifier(
match.group("project_identifier"))
Loading