Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'Error in DBconfig$ssffTrackDefinitions[trackDefFound] : invalid subscript type 'list' #2

Open
wants to merge 2,382 commits into
base: master
Choose a base branch
from

Conversation

Dallak
Copy link

@Dallak Dallak commented Dec 16, 2020

I'm trying to reproduce the following code, but I got this error 'Error in DBconfig$ssffTrackDefinitions[trackDefFound] :
invalid subscript type 'list''.

library(emuR)

path2kielread = "C:\\Users...\\kielread_emuDB\\"

kielread = load_emuDB(path2kielread, verbose = FALSE)
summary(kielread)

vowlaxn = query(emuDBhandle = kielread,
                query = "Kanonic== a | E | I | O")

vowlaxn.fdat = get_trackdata(kielread,
                        seglist = vowlaxn,
                        ssffTrackName =  "FORMANTS",
                        resultType="emuRtrackdata",
                        verbose = FALSE)

I'd appreciate any input.

raphywink added 30 commits June 17, 2019 16:40
The function create_itemsInLevel started out only supporting levels of
type ITEM. Later, it gained support for levels of type EVENT and
SEGMENT.

However, SEGMENT levels were only supported in a particular way: Users
could only provide the start time of each segment, but not the end time.
The end time was filled in based on the start time of the next neighbor.
The end time of the last segment was filled in based on the media file
length.

Now, we add a new option. Users can explicitly provide the end time for
each segment.

This is necessary if users want to use a segment list obtained via
query(), modify it and feed it to create_itemsInLevel(). If they did
that before, the end time of those segment lists  was silently ignored
and replaced.
The function was completely unusable, as it used the sequence indexes
from user input as item ids. It therefore deleted items completely
unrelated to those specified.

To correct the behavior, I also had to change the temp tables for CRUD
operations. They include a copy of the links table now. And the function
moveback_annotCrudTmpTables() now empties the original table before
writing back data from the temp tables.

I have also added some basic checks to delete_itemsInLevel(), about
required columns and their types.

The check for sequences was faulty, it compared end_item_id against
itself. It now compares against start_item_id. And it returns offending
rows invisibly; I think this style of error reporting might be the
general way of emuR’s CRUD API.
change two instances of latex to markdown and remove duplicate word.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants