-
Notifications
You must be signed in to change notification settings - Fork 16
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
Dallak
wants to merge
2,382
commits into
stevecassidy:master
Choose a base branch
from
IPS-LMU:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…gment thanks @johannacronenberg for spotting this
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.
See Roxygen 7.3.0 release notes: https://www.tidyverse.org/blog/2024/01/roxygen2-7-3-0/ And vignette("namespace") for details: https://roxygen2.r-lib.org/dev/articles/namespace.html#s3
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I'm trying to reproduce the following code, but I got this error 'Error in DBconfig$ssffTrackDefinitions[trackDefFound] :
invalid subscript type 'list''.
I'd appreciate any input.