Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

.gitignore 763 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # folders
  2. .cache/
  3. .idea/
  4. preprocessing/
  5. __pycache__/
  6. __pypackages__/
  7. .ipynb_checkpoints
  8. *__pycache__*
  9. #data folders
  10. _backups/
  11. backups/
  12. _archive/
  13. archive/
  14. _data/
  15. data/
  16. _datasets/
  17. datasets/
  18. dataset/
  19. _dataset/
  20. _merge_data/
  21. merge_data/
  22. # others
  23. *.egg-info/
  24. # Compiled:
  25. *.com
  26. *.class
  27. *.py[cod]
  28. *.log
  29. *$py.class
  30. *.cache
  31. *.Rhistory
  32. # Data:
  33. *.core
  34. *.pkl
  35. *.pickle
  36. *.mat
  37. *.h5
  38. *.dat
  39. *.csv
  40. *.Rdata
  41. *.gz
  42. *.tar
  43. # Figures:
  44. *.pdf
  45. *.mp4
  46. *.png
  47. *.jpg
  48. *.bmp
  49. *.ai
  50. *.gif
  51. *.pptx
  52. # Folders:
  53. *-logs
  54. # C++ Prerequisites:
  55. *.d
  56. # Compiled Object files:
  57. *.slo
  58. *.lo
  59. *.o
  60. *.obj
  61. # Precompiled Headers:
  62. *.gch
  63. *.pch
  64. # Compiled Dynamic libraries:
  65. *.so
  66. *.dylib
  67. *.dll
  68. # Fortran module files:
  69. *.mod
  70. *.smod
  71. # Compiled Static libraries:
  72. *.lai
  73. *.la
  74. *.a
  75. *.lib
  76. # Executables:
  77. *.exe
  78. *.out
  79. *.app