You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
today, the read_data function parses the dataset identifier (regex) to decided to decide whether the source is pasta (EDI) or NEON. That seems a little risky, since a) the formats are very similar already (see screenshot - one character different), and b) adapting to a new ID format means hunting down the regex in code. We don't have plans to add another data source, but doing so would be difficult.
Consider using a switch (or function arg) to decide which read method to use.
The text was updated successfully, but these errors were encountered:
today, the read_data function parses the dataset identifier (regex) to decided to decide whether the source is pasta (EDI) or NEON. That seems a little risky, since a) the formats are very similar already (see screenshot - one character different), and b) adapting to a new ID format means hunting down the regex in code. We don't have plans to add another data source, but doing so would be difficult.
Consider using a switch (or function arg) to decide which read method to use.
The text was updated successfully, but these errors were encountered: