SFBcontacts.r 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. library (dplyr)
  2. #SFB contacts
  3. subject1 = "data management in neuroscience: standards and workflow"
  4. text1 ="
  5. I have started to work as a data curator for the SFB1315 in April this year. Our SFB members are studying memory consolidation, using animal models (fruit fly or rodents) or human patients. Half of my work is dedicated to create tools to foster ideas and data dissemination inside the SFB* and the other half is to foster research data management and Open FAIR data.
  6. For this latter part, I will be actively participating in the NFDI-neuro network as it seems to be the perfect opportunity to share my issues and look for community-driven solutions (https://nfdi-neuro.de/). On the other hand, if you think there are data issues** that would be better tackled outside the NFDI-neuro, I would be happy to discuss them directly with you.
  7. I would be happy to know about your data management practices, get your feedback and/or discuss this further. In particular, I will send a separate email concerning teaching open data skills at the SFB level.
  8. Dr. Julien Colomb
  9. Data curator- SFB1315, AG Larkum,
  10. CCO, room 02 211
  11. Virschowweg 6,
  12. 10117 Berlin
  13. #openscience #neuroscience #rdm
  14. https://orcid.org/0000-0002-3127-5520
  15. Trainer at access2perspectives.com
  16. *
  17. In collaboration with the sourcedata team in Heidelberg, we are developing a result gallery application, to foster figure and data sharing as soon as possilble in the research process. For details and updates, see https://github.com/smartfigures-dar/Project_description/blob/master/README.md
  18. **
  19. In practice, and as examples, I started to work (prior of the NFDI invitation) on particular issues :
  20. - Open standard in describing animals in animal studies: https://github.com/jcolomb/Description-of-Rodents-in-Scientific-Publications
  21. - Microscope data: workflow and data format for archiving (see https://librarycarpentry.org/Top-10-FAIR/2019/06/27/imaging/)
  22. - NWB/BIDS standard: use and implementation (see https://www.nwb.org, https://bids.neuroimaging.io)"
  23. subject2 = "Data management in neuroscience: Training"
  24. text2 = '
  25. Before I started my part-time work as data curator at the SFB1315, I have been working as a free-lance trainer. I would like to present our offers concerning data management training, as promised in my previous email.
  26. Indeed, while research data management and open FAIR data is becoming a major topic of funding infrastructures, the opportunities for researchers to get domain-specific and practical training on these novel topics and skills is still very limited. It is particularly problematic for SFBs, where online collaborative work is particularly encouraged and required.
  27. Within the Access 2 Perspectives professional network of independent trainers, we have developed a 2-days workshop on Open Science with a specific focus on data literacy, open FAIR data and collaborative working (see this blog). The workshop was developed with a neuroscience background and put particular focus on collaborative working, we therefore think it might be of particular interest for neuroscience SFBs.
  28. In addition, we believe that social interaction between the researchers will foster long-term active and fruitful collaboration. We have therefore been developing a novel concept of training experience: the “surf and science” retreat. As presented in the attached document, this one week retreat combines work in a group and trainer input with self-paced practical work and team building activities, in a remote and relaxed atmosphere on Rügen.
  29. We hope we could raise your interest and are looking forward to read from you,
  30. Access 2 Perspectives
  31. Open Science Communication and International Affairs
  32. https://access2perspectives.com
  33. Julien Colomb, PhD, Trainer and data curator
  34. Johanna Havemann, PhD, Trainer and consultant'
  35. SFBcontact = data.frame(email="julien.colomb@fu-berlin.de", name= "colomb", sfb="sfb1315-self")
  36. library(readr)
  37. SFBcontact <- read_delim("neurosfb_no1315.tsv",
  38. "\t", escape_double = FALSE, trim_ws = TRUE)
  39. SFBcontact$contact1
  40. SFBcontact <- SFBcontact %>% filter (contact1 != "y")
  41. text_2= ""
  42. for (i in c(1:nrow(SFBcontact))) {
  43. text =paste0("<a href='mailto:",
  44. SFBcontact$spokesman_email[i],
  45. "?cc=",
  46. SFBcontact$teaching_email[i],
  47. "&subject=",
  48. subject1,
  49. "&body=Dear Prof. ",
  50. SFBcontact$spokesman_lastname[i],
  51. ", Dear ",SFBcontact$teaching_name[i],
  52. ",%0D%0A",
  53. gsub('&NewLine;','%0D%0A',textutils::HTMLencode(text1)),
  54. ", '> ",i,SFBcontact$SFBnumber[i]," </a> <br>")
  55. text_2 = paste0 (text_2, text, collapse = "%0D%0A")
  56. }
  57. #fileConn<-file("sfb1.html")
  58. #writeLines(c(text_2), fileConn)
  59. #close(fileConn)
  60. library(readr)
  61. SFBcontact <- read_delim("neurosfb_no1315.tsv",
  62. "\t", escape_double = FALSE, trim_ws = TRUE)
  63. text_3= ""
  64. for (i in c(1:nrow(SFBcontact))) {
  65. text =paste0("<a href='mailto:",
  66. SFBcontact$spokesman_email[i],
  67. "?cc=",
  68. SFBcontact$teaching_email[i],
  69. ",info@access2perspectives.com&subject=",
  70. subject2,
  71. "&body=Dear Prof. ",
  72. SFBcontact$spokesman_lastname[i],
  73. ", Dear ",SFBcontact$teaching_name[i],
  74. ",%0D%0A",
  75. gsub('&NewLine;','%0D%0A',textutils::HTMLencode(text2)),
  76. " '> ",i,SFBcontact$SFBnumber[i]," </a> <br>")
  77. text_3 = paste0 (text_3, text, collapse = "%0D%0A")
  78. }
  79. fileConn<-file("sfb2.html")
  80. writeLines(c(text_3), fileConn)
  81. close(fileConn)