Skip to content

Commit

Permalink
Fixed error in deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
caggursoy committed Mar 15, 2024
1 parent c377fa4 commit 34ce80b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions ariadne/data/data_ariadne_edges.csv
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ id;source;target;subgraph;label;background-color
39;Design framework;Presentation;Designframework;;black
40;Design framework;Pavlovia;Designframework;;black
41;Design framework;Matlab;Designframework;Lab-based;black
42;Design framework;Python;Designframework;Online \n&\n Lab-based;black
43;Design framework;Javascript;Designframework;Online \n&\n Lab-based;black
42;Design framework;Python;Designframework;"Online 
&
 Lab-based";black
43;Design framework;Javascript;Designframework;"Online 
&
 Lab-based";black
44;Matlab;Psychtoolbox;Matlab;;black
45;Python;PsychoPy;Python;;black
46;Javascript;JsPsych;Javascript;;black
47;Design framework;Gorilla;Designframework;Online \n&\n Lab-based;black
47;Design framework;Gorilla;Designframework;"Online 
&
 Lab-based";black
48;Data availability;Datasets;Dataavailability;Existing data;black
49;Datasets;Imaging data;Datasets;;black
50;Datasets;Emotions;Datasets;;black
Expand Down Expand Up @@ -209,8 +209,8 @@ id;source;target;subgraph;label;background-color
208;Preprint;Sherpa Romeo;Preprint;Allowed?;black
209;Preprint;Preprint server;Preprint;;black
210;Preprint server;MetArXiv;Preprintserver;Meta-analyses;black
211;Preprint server;PsyArXiv;Preprintserver;Psychological\nstudies;black
212;Preprint server;BioArXiv;Preprintserver;Biopsychological\nstudies;black
211;Preprint server;PsyArXiv;Preprintserver;"Psychological
studies";black
212;Preprint server;BioArXiv;Preprintserver;"Biopsychological
studies";black
213;Publication;ORCID;Publication;;black
214;Publication;Dissemination;initial;;black
215;Dissemination;Resource Sharing;Dissemination;;black
Expand Down
1 change: 1 addition & 0 deletions ariadne/data/data_ariadne_nodes.csv
Original file line number Diff line number Diff line change
Expand Up @@ -309,3 +309,4 @@ Mastodon;Mastodon;ellipse;#D41159;white;3;SocialMedia;Dissemination;yes;https://
TikTok;TikTok;ellipse;#D41159;white;3;SocialMedia;Dissemination;yes;https://www.tiktok.com/en/;https://www.tiktok.com/en/;TikTok is a social media platform that allows users to create and share short videos set to music or other audio, known for its popularity among younger generations.
Instagram;Instagram;ellipse;#D41159;white;3;SocialMedia;Dissemination;yes;https://www.instagram.com/;https://www.instagram.com/;Instagram is a photo and video sharing social media platform that enables users to upload, edit, and share visual content with their followers.
YouTube;YouTube;ellipse;#D41159;white;3;SocialMedia;Dissemination;yes;https://www.youtube.com/;https://www.youtube.com/;YouTube is a video-sharing platform where users can upload, watch, and interact with a wide variety of videos, spanning from entertainment to education.
test;;;;;;;;;;;
2 changes: 1 addition & 1 deletion autoConv/autoConv.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

import pandas as pd
url="https://github.com/raw/IGOR-bioDGPs/ARIADNE/master/testbook/data/data_ariadne_nodes.csv"
url="https://github.com/raw/IGOR-bioDGPs/ARIADNE/master/ariadne/data/data_ariadne_nodes.csv"
df_csv = pd.read_csv(url, on_bad_lines='skip', delimiter=';', encoding = "ISO-8859-1")
# Select four columns
selected_columns = df_csv.loc[:, ['id', 'mainGraph', 'subgraph', 'href', 'descr']]
Expand Down

0 comments on commit 34ce80b

Please sign in to comment.