commonmeta-ruby 3.2.6 → 3.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +16 -2
- data/commonmeta.gemspec +1 -0
- data/lib/commonmeta/author_utils.rb +20 -3
- data/lib/commonmeta/cli.rb +2 -2
- data/lib/commonmeta/crossref_utils.rb +22 -18
- data/lib/commonmeta/readers/json_feed_reader.rb +27 -2
- data/lib/commonmeta/utils.rb +13 -1
- data/lib/commonmeta/version.rb +1 -1
- data/resources/crossref/common5.3.1.xsd +43 -35
- data/spec/author_utils_spec.rb +38 -0
- data/spec/cli_spec.rb +5 -5
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/json_feed_unregistered/blog_post_uuid.yml +49 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed/unregistered_posts.yml +215 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/blogger_post.yml +20 -11
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/ghost_post_with_author_name_suffix.yml +215 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/ghost_post_with_doi.yml +14 -9
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/ghost_post_without_doi.yml +9 -8
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/jekyll_post.yml +15 -10
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/syldavia_gazette_post_with_references.yml +328 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/upstream_post_with_references.yml +824 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/wordpress_post.yml +14 -9
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/wordpress_post_with_references.yml +390 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/{json_feed_url → json_feed_unregistered_url}/all_posts.yml +11 -11
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +103 -105
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article.yml +5 -5
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +4 -4
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/json_feed_item_from_rogue_scholar_with_doi.yml +60 -9
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/json_feed_item_from_upstream_blog.yml +55 -7
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/json_feed_item_with_references.yml +824 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/posted_content.yml +17 -17
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +12 -8
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +178 -181
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +104 -92
- data/spec/readers/json_feed_reader_spec.rb +106 -12
- data/spec/utils_spec.rb +23 -5
- data/spec/writers/crossref_xml_writer_spec.rb +31 -3
- metadata +24 -8
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/json_feed_url/front-matter_blog.yml +0 -221
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/json_item_from_rogue_scholar_with_doi.yml +0 -163
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/json_item_from_upstream_blog.yml +0 -243
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/json_post_from_rogue_scholar_with_doi.yml +0 -210
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/json_post_from_upstream_blog.yml +0 -290
data/spec/author_utils_spec.rb
CHANGED
@@ -44,10 +44,42 @@ describe Commonmeta::Metadata, vcr: true do
|
|
44
44
|
expect(subject.is_personal_name?(name: author['name'])).to be true
|
45
45
|
end
|
46
46
|
|
47
|
+
it 'has unknown given name and middle initial' do
|
48
|
+
author = { 'name' => 'Tejas S. Sathe' }
|
49
|
+
expect(subject.is_personal_name?(name: author['name'])).to be true
|
50
|
+
end
|
51
|
+
|
47
52
|
it 'has no info' do
|
48
53
|
author = { 'name' => 'M Fenner' }
|
49
54
|
expect(subject.is_personal_name?(name: author['name'])).to be true
|
50
55
|
end
|
56
|
+
|
57
|
+
it 'name with title' do
|
58
|
+
author = { 'name' => 'Tejas S. Sathe, MD' }
|
59
|
+
expect(subject.is_personal_name?(name: author['name'])).to be true
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
context 'cleanup_author' do
|
64
|
+
it 'Smith J.' do
|
65
|
+
author = 'Smith J.'
|
66
|
+
expect(subject.cleanup_author(author)).to eq('Smith, J.')
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'Smith, John' do
|
70
|
+
author = 'Smith, John'
|
71
|
+
expect(subject.cleanup_author(author)).to eq('Smith, John')
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'John Smith' do
|
75
|
+
author = 'John Smith'
|
76
|
+
expect(subject.cleanup_author(author)).to eq('John Smith')
|
77
|
+
end
|
78
|
+
|
79
|
+
it 'with email' do
|
80
|
+
author = 'noreply@blogger.com (Roderic Page)'
|
81
|
+
expect(subject.cleanup_author(author)).to eq('Roderic Page')
|
82
|
+
end
|
51
83
|
end
|
52
84
|
|
53
85
|
context 'get_one_author' do
|
@@ -69,6 +101,12 @@ describe Commonmeta::Metadata, vcr: true do
|
|
69
101
|
)
|
70
102
|
end
|
71
103
|
|
104
|
+
it 'has name with title' do
|
105
|
+
author = { 'name' => "Tejas S. Sathe, MD" }
|
106
|
+
response = subject.get_one_author(author)
|
107
|
+
expect(response).to eq('givenName' => 'Tejas S.', 'familyName' => 'Sathe', 'type' => 'Person')
|
108
|
+
end
|
109
|
+
|
72
110
|
it 'has name in display-order with ORCID' do
|
73
111
|
input = 'https://doi.org/10.6084/M9.FIGSHARE.4700788'
|
74
112
|
subject = described_class.new(input: input)
|
data/spec/cli_spec.rb
CHANGED
@@ -341,9 +341,9 @@ describe Commonmeta::CLI do
|
|
341
341
|
end
|
342
342
|
end
|
343
343
|
|
344
|
-
describe "
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
end
|
344
|
+
# describe "json_feed_unregistered", vcr: true do
|
345
|
+
# it "blog post uuid" do
|
346
|
+
# expect { subject.json_feed_unregistered }.to output(/e4872b3e-cd15-407d-8406-33642c1a98b0\n/).to_stdout
|
347
|
+
# end
|
348
|
+
# end
|
349
349
|
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://rogue-scholar.org/api/posts/unregistered
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Connection:
|
11
|
+
- close
|
12
|
+
Host:
|
13
|
+
- rogue-scholar.org
|
14
|
+
User-Agent:
|
15
|
+
- http.rb/5.1.1
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Age:
|
22
|
+
- '0'
|
23
|
+
Cache-Control:
|
24
|
+
- public, max-age=0, must-revalidate
|
25
|
+
Content-Length:
|
26
|
+
- '2'
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Date:
|
30
|
+
- Sat, 10 Jun 2023 08:41:01 GMT
|
31
|
+
Etag:
|
32
|
+
- '"38jmpejbxv2"'
|
33
|
+
Server:
|
34
|
+
- Vercel
|
35
|
+
Strict-Transport-Security:
|
36
|
+
- max-age=63072000
|
37
|
+
X-Matched-Path:
|
38
|
+
- "/api/posts/unregistered"
|
39
|
+
X-Vercel-Cache:
|
40
|
+
- MISS
|
41
|
+
X-Vercel-Id:
|
42
|
+
- fra1::iad1::zmnzt-1686386457205-d9f9a0745c33
|
43
|
+
Connection:
|
44
|
+
- close
|
45
|
+
body:
|
46
|
+
encoding: UTF-8
|
47
|
+
string: "[]"
|
48
|
+
recorded_at: Sat, 10 Jun 2023 08:41:01 GMT
|
49
|
+
recorded_with: VCR 6.1.0
|
@@ -0,0 +1,215 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://rogue-scholar.org/api/posts/unregistered
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Connection:
|
11
|
+
- close
|
12
|
+
Host:
|
13
|
+
- rogue-scholar.org
|
14
|
+
User-Agent:
|
15
|
+
- http.rb/5.1.1
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Age:
|
22
|
+
- '0'
|
23
|
+
Cache-Control:
|
24
|
+
- public, max-age=0, must-revalidate
|
25
|
+
Content-Length:
|
26
|
+
- '16766'
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Date:
|
30
|
+
- Sun, 11 Jun 2023 15:55:11 GMT
|
31
|
+
Etag:
|
32
|
+
- '"ojfwmyfwfacxk"'
|
33
|
+
Server:
|
34
|
+
- Vercel
|
35
|
+
Strict-Transport-Security:
|
36
|
+
- max-age=63072000
|
37
|
+
X-Matched-Path:
|
38
|
+
- "/api/posts/unregistered"
|
39
|
+
X-Vercel-Cache:
|
40
|
+
- MISS
|
41
|
+
X-Vercel-Id:
|
42
|
+
- fra1::iad1::tfxzn-1686498910666-ea864f114549
|
43
|
+
Connection:
|
44
|
+
- close
|
45
|
+
body:
|
46
|
+
encoding: UTF-8
|
47
|
+
string: '[{"id":"https://svpow.com/2023/06/09/three-presentations-today-at-mte14-and-the-papers-that-go-with-them/","uuid":"ca2a7df4-f3b9-487c-82e9-27f54de75ea8","url":"https://svpow.com/2023/06/09/three-presentations-today-at-mte14-and-the-papers-that-go-with-them/","title":"Three
|
48
|
+
presentations today at MTE14, and the papers that go with them","summary":"BIG
|
49
|
+
day today. The 14th Symposium on Mesozoic Terrestrial Ecosystems and Biota
|
50
|
+
(MTE14) is taking place in Salt Lake City this week. Normally I’d be there
|
51
|
+
in a heartbeat, but my son is graduating from high...","date_published":"2023-06-09T13:02:26Z","date_modified":"2023-06-09T13:02:26Z","authors":[{"url":null,"name":"Matt
|
52
|
+
Wedel"}],"image":null,"content_html":"<p><a href=\"https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg\"><img
|
53
|
+
loading=\"lazy\" data-attachment-id=\"21001\" data-permalink=\"https://svpow.com/2023/06/09/three-presentations-today-at-mte14-and-the-papers-that-go-with-them/ripple-rock-in-the-oklahoma-morrison/\"
|
54
|
+
data-orig-file=\"https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg\"
|
55
|
+
data-orig-size=\"2000,2000\" data-comments-opened=\"1\" data-image-meta=\"{\"aperture\":\"1.8\",\"credit\":\"\",\"camera\":\"iPhone
|
56
|
+
7\",\"caption\":\"\",\"created_timestamp\":\"1530009833\",\"copyright\":\"\",\"focal_length\":\"3.99\",\"iso\":\"20\",\"shutter_speed\":\"0.00051203277009729\",\"title\":\"\",\"orientation\":\"1\"}\"
|
57
|
+
data-image-title=\"Ripple rock in the Oklahoma Morrison\" data-image-description=\"\"
|
58
|
+
data-image-caption=\"\" data-medium-file=\"https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg?w=300\"
|
59
|
+
data-large-file=\"https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg?w=480\"
|
60
|
+
class=\"size-large wp-image-21001 aligncenter\" src=\"https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg?w=480\"
|
61
|
+
alt=\"\" width=\"480\" height=\"480\" srcset=\"https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg?w=480
|
62
|
+
480w, https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg?w=960
|
63
|
+
960w, https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg?w=150
|
64
|
+
150w, https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg?w=300
|
65
|
+
300w, https://svpow.files.wordpress.com/2023/06/ripple-rock-in-the-oklahoma-morrison.jpg?w=768
|
66
|
+
768w\" sizes=\"(max-width: 480px) 100vw, 480px\" /></a></p>\n<p>BIG day today.
|
67
|
+
The 14th Symposium on Mesozoic Terrestrial Ecosystems and Biota (MTE14) is
|
68
|
+
taking place in Salt Lake City this week. Normally I’d be there in a
|
69
|
+
heartbeat, but my son is graduating from high school next week and I’m
|
70
|
+
far too busy to get away. Still, I’m an author on one poster and two
|
71
|
+
talks that are running today, along with the three associated short papers
|
72
|
+
that are published in the conference volume in The Anatomical Record. </p>\n<p>I
|
73
|
+
will be blogging about these things, and shortly, but for now here are Wedel-related
|
74
|
+
presentations and links to the papers, in chronological order. (The whole
|
75
|
+
conference volume is available <a href=\"https://anatomypubs.onlinelibrary.wiley.com/doi/full/10.1002/ar.25219\">here</a>,
|
76
|
+
I just extracted the papers I’m on as separate PDFs to post in the links
|
77
|
+
below.)</p>\n<p>1. Wedel and Atterholt on expanded neurocentral joints in
|
78
|
+
sauropods — Jessie is presenting our poster, which should be up for
|
79
|
+
most of the day. Citation and link to paper:</p>\n<p style=\"padding-left:
|
80
|
+
40px\"><a href=\"https://sauroposeidon.files.wordpress.com/2010/04/wedel-and-atterholt-2023-expanded-neurocentral-joints-in-sauropods.pdf\">Wedel,
|
81
|
+
M.J., and Atterholt, J. 2023. Expanded neurocentral joints in the vertebrae
|
82
|
+
of sauropod dinosaurs. In Hunt-Foster, R.K., Kirkland, J.I., and Loewen, M.A.
|
83
|
+
(eds), 14th Symposium on Mesozoic Terrestrial Ecosystems and Biota. The Anatomical
|
84
|
+
Record 306(S1):256-257.</a></p>\n<p>2. Curtice et al. on the first material
|
85
|
+
of <em>Haplocanthosaurus</em> from Dry Mesa — I believe Brian Curtice
|
86
|
+
and Colin Boisvert are tag-teaming this talk at 2:00 pm MDT. </p>\n<p style=\"padding-left:
|
87
|
+
40px\"><a href=\"https://sauroposeidon.files.wordpress.com/2010/04/curtice-et-al-2023-haplocanthosaurus-from-dry-mesa.pdf\">Curtice,
|
88
|
+
B., Wedel, M.J., Wilhite, D.R., and Boisvert, C. 2023. New material of <em>Haplocanthosaurus</em>
|
89
|
+
(Hatcher 1903) from the Dry Mesa Dinosaur Quarry and a comment on sauropod
|
90
|
+
diversity. In Hunt-Foster, R.K., Kirkland, J.I., and Loewen, M.A. (eds), 14th
|
91
|
+
Symposium on Mesozoic Terrestrial Ecosystems and Biota. The Anatomical Record
|
92
|
+
306(S1):79-81.</a></p>\n<p>3. Weil et al. on Morrison microvertebrates from
|
93
|
+
the Oklahoma panhandle — Anne Weil is giving this talk at 2:15 pm MDT.</p>\n<p
|
94
|
+
style=\"padding-left: 40px\"><a href=\"https://sauroposeidon.files.wordpress.com/2010/04/weil-et-al-2023-oklahoma-morrison-microvertebrates.pdf\">Weil,
|
95
|
+
A., Hall, L., and Wedel, M.J. 2023. Microvertebrate expansion of known fauna
|
96
|
+
of the Morrison Formation of Oklahoma will enable more meaningful comparisons
|
97
|
+
with other regions. In Hunt-Foster, R.K., Kirkland, J.I., and Loewen, M.A.
|
98
|
+
(eds), 14th Symposium on Mesozoic Terrestrial Ecosystems and Biota. The Anatomical
|
99
|
+
Record 306(S1):257-258.</a></p>\n<p>Stand by for more info on all this stuff.
|
100
|
+
And if you’re attending MTE14, go catch these presentations and say
|
101
|
+
hi to all these excellent human beings!</p>\n","tags":["#MTE14","conferences","navel
|
102
|
+
blogging","timely"],"language":"en","blog_id":"dkvra02","blog":{"id":"dkvra02","title":"Sauropod
|
103
|
+
Vertebra Picture of the Week","description":"SV-POW! ... All sauropod vertebrae,
|
104
|
+
except when we're talking about Open Access","language":"en","favicon":null,"feed_url":"https://svpow.com/feed/atom/","home_page_url":"https://svpow.com","user_id":"8498eaf6-8c58-4b58-bc15-27eda292b1aa","created_at":"2023-05-31T14:28:02+00:00","indexed_at":"2023-02-01","feed_format":"application/atom+xml","license":"https://creativecommons.org/licenses/by/4.0/legalcode","generator":"WordPress
|
105
|
+
(.com)","category":"Natural Sciences","prefix":"10.59350","modified_at":"2023-05-27T00:26:38+00:00","version":"https://jsonfeed.org/version/1.1","backlog":true}},{"id":"http://bjoern.brembs.net/2023/06/the-beginning-of-the-end-for-academic-publishers/","uuid":"c0ebaf2d-8e50-404c-8db7-4fd04e56aded","url":"http://bjoern.brembs.net/2023/06/the-beginning-of-the-end-for-academic-publishers/","title":"The
|
106
|
+
beginning of the end for academic publishers?","summary":"On May 23, the Council
|
107
|
+
of the EU adopted a set of conclusions on scholarly publishing that, if followed
|
108
|
+
through, would spell the end for academic publishers and scholarly journals
|
109
|
+
as we know them. On the same...","date_published":"2023-06-02T07:01:14Z","date_modified":"2023-06-02T07:01:15Z","authors":[{"url":null,"name":"Björn
|
110
|
+
Brembs"}],"image":null,"content_html":"<img src=\"http://bjoern.brembs.net/wp//wp-content/uploads/2013/05/politics.gif\"
|
111
|
+
width=\"50\" height=\"50\" alt=\"science politics\" title=\"science politics\"
|
112
|
+
/><br/>\n<p>On May 23, the <a href=\"https://en.wikipedia.org/wiki/Council_of_the_European_Union\">Council
|
113
|
+
of the EU</a> adopted a <a href=\"https://www.consilium.europa.eu/en/press/press-releases/2023/05/23/council-calls-for-transparent-equitable-and-open-access-to-scholarly-publications/\">set
|
114
|
+
of conclusions</a> on scholarly publishing that, if followed through, would
|
115
|
+
spell the end for academic publishers and scholarly journals as we know them.
|
116
|
+
On the same day, the adoption was followed by a <a href=\"https://www.coalition-s.org/open-science-stakeholders-welcome-european-efforts-towards-publicly-owned-and-not-for-profit-scholarly-communication/\">joint
|
117
|
+
statement</a> of support by the largest and most influential research organizations
|
118
|
+
in Europe. At the heart of the goals spelled out in the conclusions and the
|
119
|
+
statement of support is the creation of a “publicly owned and not-for-profit”
|
120
|
+
infrastructure for scholarly publications.</p>\n\n\n\n<p>Specifically, the
|
121
|
+
Council </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>ENCOURAGES Member
|
122
|
+
States and the Commission to invest in and foster interoperable, not-for-profit
|
123
|
+
infrastructures for publishing based on open source software and open standards,
|
124
|
+
in order to avoid the lock-in of services as well as proprietary systems,
|
125
|
+
and to connect these infrastructures to the EOSC</p>\n</blockquote>\n\n\n\n<p>This
|
126
|
+
echos almost verbatim our proposal from 2021 where we outline a <a href=\"https://doi.org/10.5281/zenodo.5526634\">replacement
|
127
|
+
for academic journals</a>. In this post, we detail the reasons behind this
|
128
|
+
seemingly radical proposal:</p>\n\n\n\n<figure class=\"wp-block-image size-large
|
129
|
+
is-resized\"><a href=\"http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_circular_v1.5.png\"><img
|
130
|
+
decoding=\"async\" src=\"http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_circular_v1.5-1024x863.png\"
|
131
|
+
alt=\"Three major scholarly crises in a vicious cycle\" class=\"wp-image-2571\"
|
132
|
+
width=\"512\" height=\"432\" srcset=\"http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_circular_v1.5-1024x863.png
|
133
|
+
1024w, http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_circular_v1.5-300x253.png
|
134
|
+
300w, http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_circular_v1.5-768x647.png
|
135
|
+
768w, http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_circular_v1.5-50x42.png
|
136
|
+
50w, http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_circular_v1.5.png
|
137
|
+
1175w\" sizes=\"(max-width: 512px) 100vw, 512px\" /></a><figcaption class=\"wp-element-caption\"><em>A
|
138
|
+
vicious cycle of three crises</em>.<br />With their supra-inflationary price
|
139
|
+
increases, profit-maximizing journals overcharge (via subscriptions or article
|
140
|
+
processing charges) institutions by a factor of up to tenfold, extracting
|
141
|
+
library budgets with little if anything left for infrastructural development.
|
142
|
+
The resulting lack of infrastructure funds is a crisis of affordability: institutions
|
143
|
+
cannot afford to invest in technology and human support for relieving researchers
|
144
|
+
of menial tasks such as manuscript submission, data deposition, code publication,
|
145
|
+
etc. This results in a functionality crisis that entails researchers lacking
|
146
|
+
time, functionalities and human support both for efficient scrutiny during
|
147
|
+
the review process as well as for making their own research open and reproducible.
|
148
|
+
Not shown: Journals have apparently not invested their surplus into reviewer
|
149
|
+
support, resulting in little improvement over the last decades, such that
|
150
|
+
researchers are still lacking basic functionalities such as, e.g., comments
|
151
|
+
via authoring system, direct author communication, AI-assisted error and fraud
|
152
|
+
detection, efficient manuscript submission, etc., contributing to the functionality
|
153
|
+
crisis. As the journals keep increasing their prices without a concomitant
|
154
|
+
rise in investments, they fuel the replicability crisis.</figcaption></figure>\n\n\n\n<p>This
|
155
|
+
vicious cycle has been allowed to go on for so long, that more and more experts
|
156
|
+
are now calling for precisely such a disruptive break. The time for small,
|
157
|
+
evolutionary steps has passed and the parasitic publishing corporations have
|
158
|
+
shown little willingness over the last decades even to just mitigate, let
|
159
|
+
alone solve the problems caused by their extractive business models. For more
|
160
|
+
than a decade, an ever-growing group of researchers have called to <a href=\"http://bjoern.brembs.net/2013/06/cut-out-the-parasitic-middlemen/\">cut
|
161
|
+
out these parasitic middle-men</a>. It now finally seems as if our arguments
|
162
|
+
have been convincing. Everything in the Council’s conclusions reiterates
|
163
|
+
what the open science community has been fighting for in all this time: vendor
|
164
|
+
lock-in needs to be broken, scholarly governance established and fragmenting
|
165
|
+
silos replaced with interoperable, federated infrastructure.</p>\n\n\n\n<p>The
|
166
|
+
technical solutions needed for this modernization from 17th century journals
|
167
|
+
to 21 century digital technology are plenty and readily available off the
|
168
|
+
shelf. Scholarship has the choice of either picking pre-existing solutions
|
169
|
+
such as <a href=\"https://core.ac.uk/\">CORE</a> or <a href=\"https://openresearchcentral.org/\">ORC</a>,
|
170
|
+
or design a new network. In either case, the general structural design of
|
171
|
+
such a network may look something like this:</p>\n\n\n\n<figure class=\"wp-block-image
|
172
|
+
size-large is-resized\"><a href=\"http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_openscience_platform_v1.6.png\"><img
|
173
|
+
decoding=\"async\" loading=\"lazy\" src=\"http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_openscience_platform_v1.6-1024x623.png\"
|
174
|
+
alt=\"\" class=\"wp-image-2572\" width=\"512\" height=\"312\" srcset=\"http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_openscience_platform_v1.6-1024x623.png
|
175
|
+
1024w, http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_openscience_platform_v1.6-300x182.png
|
176
|
+
300w, http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_openscience_platform_v1.6-768x467.png
|
177
|
+
768w, http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_openscience_platform_v1.6-1536x934.png
|
178
|
+
1536w, http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_openscience_platform_v1.6-2048x1245.png
|
179
|
+
2048w, http://bjoern.brembs.net/wp/wp-content/uploads/2023/06/FIG_openscience_platform_v1.6-50x30.png
|
180
|
+
50w\" sizes=\"(max-width: 512px) 100vw, 512px\" /></a><figcaption class=\"wp-element-caption\"><em>Concept
|
181
|
+
for a federated scholarly information network</em>.<br />A federated network
|
182
|
+
of institutional repositories constitutes the underlying infrastructure. Ideally,
|
183
|
+
this infrastructure is designed redundantly, such that large fractions of
|
184
|
+
nodes may go offline and the remaining nodes still provide 100% of the content.
|
185
|
+
Users only directly interact with the output and narrative layers. The output
|
186
|
+
layer contains all research objects, text, data and code. The narrative layer
|
187
|
+
combines research objects in various forms, including research articles. The
|
188
|
+
community layer encompasses standard social technologies such as likes, follows
|
189
|
+
and other network tools (see also “<a href=\"https://doi.org/10.5281/zenodo.7643817\">Mastodon
|
190
|
+
over Mammon</a>“). Modified from <a href=\"https://blogs.lse.ac.uk/impactofsocialsciences/2017/04/10/rather-than-simply-moving-from-paying-to-read-to-paying-to-publish-its-time-for-a-european-open-access-platform\">LSE</a>.</figcaption></figure>\n\n\n\n<p>Picking
|
191
|
+
an existing solution such as CORE or ORC comes with the advantage that little
|
192
|
+
new development has to be done and that it is obviously very cheap: everything
|
193
|
+
is already in place and only needs to be expanded. The downsides are that
|
194
|
+
the existing solutions have been designed in the current ecosystem and that
|
195
|
+
may have entailed some historical baggage one would need to identify and fix.
|
196
|
+
Conversely, picking off-the-shelf components to build a replacement from scratch
|
197
|
+
costs more, but has the advantage to be able to build a state-of.the-art system
|
198
|
+
with all the bells and whistles from the ground up. It’s a bit like
|
199
|
+
the choice between buying a used or new car or house.</p>\n\n\n\n<p>Obviously,
|
200
|
+
right after the declaration came out, the corporate misinformation machine
|
201
|
+
sprang into high gear. I won’t repeat the misleading, false or sometimes
|
202
|
+
just comically desperate attempts at smearing an obviously well thought-through,
|
203
|
+
sound and logical solution that has been decades in the making. Suffice it
|
204
|
+
to say, there are plenty of reasons why the plans outlined by the Council
|
205
|
+
have drawn such widespread support from all corners of the research community,
|
206
|
+
while the only resistance comes from the monopolistic corporations. This declaration
|
207
|
+
tackles the root of the replicability, affordability and functionality crises.
|
208
|
+
It aims to treat the disease, not the symptoms and has the potential to develop
|
209
|
+
into an effective vaccine against parasitic businesses striving to leech the
|
210
|
+
public purse. Little wonder these businesses fear it so much.</p>\n","tags":["science
|
211
|
+
politics","Council of the EU","infrastructure","publishers"],"language":"en","blog_id":"8q8xh52","blog":{"id":"8q8xh52","title":"bjoern.brembs.blog","description":"The
|
212
|
+
blog of neurobiologist Björn Brembs","language":"en","favicon":null,"feed_url":"http://bjoern.brembs.net/feed/atom/","home_page_url":"http://bjoern.brembs.net","user_id":"8498eaf6-8c58-4b58-bc15-27eda292b1aa","created_at":"2023-05-31T08:09:10+00:00","indexed_at":"2023-04-04","feed_format":"application/atom+xml","license":"https://creativecommons.org/licenses/by/4.0/legalcode","generator":"WordPress","category":"Natural
|
213
|
+
Sciences","prefix":"10.59350","modified_at":"2023-03-14T14:13:30+00:00","version":"https://jsonfeed.org/version/1.1","backlog":true}}]'
|
214
|
+
recorded_at: Sun, 11 Jun 2023 15:55:11 GMT
|
215
|
+
recorded_with: VCR 6.1.0
|
data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/blogger_post.yml
CHANGED
@@ -23,13 +23,13 @@ http_interactions:
|
|
23
23
|
Cache-Control:
|
24
24
|
- public, max-age=0, must-revalidate
|
25
25
|
Content-Length:
|
26
|
-
- '
|
26
|
+
- '6660'
|
27
27
|
Content-Type:
|
28
28
|
- application/json; charset=utf-8
|
29
29
|
Date:
|
30
|
-
-
|
30
|
+
- Thu, 15 Jun 2023 11:05:02 GMT
|
31
31
|
Etag:
|
32
|
-
- '"
|
32
|
+
- '"dpw65zvlfg54i"'
|
33
33
|
Server:
|
34
34
|
- Vercel
|
35
35
|
Strict-Transport-Security:
|
@@ -39,7 +39,7 @@ http_interactions:
|
|
39
39
|
X-Vercel-Cache:
|
40
40
|
- MISS
|
41
41
|
X-Vercel-Id:
|
42
|
-
- fra1::iad1::
|
42
|
+
- fra1::iad1::k6rcq-1686827099670-a22865de7b2f
|
43
43
|
Connection:
|
44
44
|
- close
|
45
45
|
body:
|
@@ -48,10 +48,14 @@ http_interactions:
|
|
48
48
|
years and a million links","summary":"As trailed on a Twitter thread last
|
49
49
|
week I’ve been working on a manuscript describing the efforts to map taxonomic
|
50
50
|
names to their original descriptions in the taxonomic literature. Putting
|
51
|
-
together a
|
52
|
-
|
53
|
-
|
54
|
-
|
51
|
+
together a manuscript on linking taxonomic names to the primary literature,
|
52
|
+
basically “um, what, exactly, have you been doing all these years?”. TL;DR
|
53
|
+
Across fungi, plants, and animals approx 1.3 million names have been linked
|
54
|
+
to a persistent identifier for a publication.— Roderic Page (@rdmpage) May
|
55
|
+
25,...","date_published":"2023-05-31T17:26:00Z","date_modified":null,"authors":[{"url":null,"name":"noreply@blogger.com
|
56
|
+
(Roderic Page)"}],"image":null,"content_html":"<p>As trailed on a Twitter
|
57
|
+
thread last week I’ve been working on a manuscript describing the efforts
|
58
|
+
to map taxonomic names to their original descriptions in the taxonomic literature.</p>\n<blockquote
|
55
59
|
class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Putting together a manuscript
|
56
60
|
on linking taxonomic names to the primary literature, basically “um, what,
|
57
61
|
exactly, have you been doing all these years?”. TL;DR Across fungi, plants,
|
@@ -88,7 +92,12 @@ http_interactions:
|
|
88
92
|
border=\"0\" width=\"320\" data-original-height=\"2276\" data-original-width=\"2276\"
|
89
93
|
src=\"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf0YBuvNSXWAJTfQ1jk4XSocMzCYHP7t6IPUqhjQ3mftgM_850igWaD2copgNH6Xk6T62xBU641wvwOvXgCCDY3m2xC_gaILXO9RGx8H3Gpy5OOncsLb9smpT2LIgtYOExVBVdDRWqA0AZ8-mQjWL7dL5TiG7MqVu8spT8ACoGOPR_T36hRA/s320/plants-coverage.png\"/></a></div>\n\n\nThere
|
90
94
|
is also a simple app to demonstrate these links, see <a href=\"https://species-cite.herokuapp.com\">https://species-cite.herokuapp.com</a>.\n\n\n\n<blockquote>\n<p>Written
|
91
|
-
with <a href=\"https://stackedit.io/\">StackEdit</a>.</p>\n</blockquote>","tags":[],"language":"en","blog_id":"tyfqw20","blog":{"id":"tyfqw20","title":"iPhylo","
|
92
|
-
|
93
|
-
|
95
|
+
with <a href=\"https://stackedit.io/\">StackEdit</a>.</p>\n</blockquote>","tags":[],"language":"en","references":[],"blog_id":"tyfqw20","blog":{"id":"tyfqw20","title":"iPhylo","description":"Rants,
|
96
|
+
raves (and occasionally considered opinions) on phyloinformatics, taxonomy,
|
97
|
+
and biodiversity informatics. For more ranty and less considered opinions,
|
98
|
+
see my <a href=\"https://twitter.com/rdmpage\">Twitter feed</a>.<br>ISSN 2051-8188.
|
99
|
+
Written content on this site is licensed under a <a href=\"https://creativecommons.org/licenses/by/4.0/\">Creative
|
100
|
+
Commons Attribution 4.0 International license</a>.","language":"en","favicon":null,"feed_url":"https://iphylo.blogspot.com/feeds/posts/default?alt=rss","home_page_url":"https://iphylo.blogspot.com/","user_id":"8498eaf6-8c58-4b58-bc15-27eda292b1aa","created_at":"2023-05-31T08:03:14+00:00","indexed_at":"2023-02-06","feed_format":"application/rss+xml","license":"https://creativecommons.org/licenses/by/4.0/legalcode","generator":"Blogger","category":"Natural
|
101
|
+
Sciences","prefix":"10.59350","modified_at":"2023-05-31T17:26:00+00:00","version":"https://jsonfeed.org/version/1.1","backlog":true}}'
|
102
|
+
recorded_at: Thu, 15 Jun 2023 11:05:03 GMT
|
94
103
|
recorded_with: VCR 6.1.0
|
@@ -0,0 +1,215 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://rogue-scholar.org/api/posts/6179ad80-cc7f-4904-9260-0ecb3c3a90ba
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Connection:
|
11
|
+
- close
|
12
|
+
Host:
|
13
|
+
- rogue-scholar.org
|
14
|
+
User-Agent:
|
15
|
+
- http.rb/5.1.1
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Age:
|
22
|
+
- '0'
|
23
|
+
Cache-Control:
|
24
|
+
- public, max-age=0, must-revalidate
|
25
|
+
Content-Length:
|
26
|
+
- '14725'
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Date:
|
30
|
+
- Thu, 15 Jun 2023 05:34:55 GMT
|
31
|
+
Etag:
|
32
|
+
- '"12ntu9by009bd1"'
|
33
|
+
Server:
|
34
|
+
- Vercel
|
35
|
+
Strict-Transport-Security:
|
36
|
+
- max-age=63072000
|
37
|
+
X-Matched-Path:
|
38
|
+
- "/api/posts/[slug]"
|
39
|
+
X-Vercel-Cache:
|
40
|
+
- MISS
|
41
|
+
X-Vercel-Id:
|
42
|
+
- fra1::iad1::svxc9-1686807294657-7dc3d3c6f0b6
|
43
|
+
Connection:
|
44
|
+
- close
|
45
|
+
body:
|
46
|
+
encoding: UTF-8
|
47
|
+
string: '{"id":"https://www.ideasurg.pub/academic-powerhouse","uuid":"6179ad80-cc7f-4904-9260-0ecb3c3a90ba","url":"https://www.ideasurg.pub/academic-powerhouse/","title":"How
|
48
|
+
to Build an Academic Powerhouse: Let''s Study Who''s Doing it","summary":"A
|
49
|
+
Data Exploration with Public Data from the Academic Surgical Congress","date_published":"2023-06-03T04:54:30Z","date_modified":null,"authors":[{"url":null,"name":"Tejas
|
50
|
+
S. Sathe, MD"}],"image":null,"content_html":"<p>Students and residents aspiring
|
51
|
+
for a career in academic surgery are looking for training programs that will
|
52
|
+
help jumpstart their careers by exposing them to mentorship and opportunities
|
53
|
+
to conduct research. While the gold standard of academic productivity (for
|
54
|
+
the time being) remains peer-reviewed publications, conference presentations
|
55
|
+
are an important secondary metric. In addition to feeding eventual papers,
|
56
|
+
conference talks allow trainees to practice presentation skills, build their
|
57
|
+
networks, and learn about the work being done at peer institutions and the
|
58
|
+
field more broadly. Residents pursuing professional development are encouraged
|
59
|
+
to apply to and attend conferences, though in the post COVID era the cost
|
60
|
+
of conference attendance and travel are being re-evaluated. Even moreso than
|
61
|
+
publications, conference presentations are typically led by students and residents.
|
62
|
+
For now, academic conference participation can serve as an important albeit
|
63
|
+
limited metric to evaluate an overall institution''s research power –
|
64
|
+
especially as it relates to trainees.</p><p>In order to understand how to
|
65
|
+
build a successful research program, we wanted to understand who had already
|
66
|
+
done so. Conceivably, by finding successful examples, we can conduct interviews
|
67
|
+
and focus groups among key stakeholders at these programs to understand what
|
68
|
+
they did, and how these actions can be replicated. We were particularly interested
|
69
|
+
in seeing which programs demonstrated a high number of accepted abstracts
|
70
|
+
and which programs were able to improve their abstract performance from year
|
71
|
+
to year. </p><p>The <a href=\"https://www.academicsurgicalcongress.org/?ref=ideasurg.pub\">Academic
|
72
|
+
Surgical Congress</a> (ASC) is a joint surgical meeting co-hosted by the <a
|
73
|
+
href=\"https://www.aasurg.org/?ref=ideasurg.pub\">Association for Academic
|
74
|
+
Surgery</a> (AAS) and the <a href=\"https://www.susweb.org/?ref=ideasurg.pub\">Society
|
75
|
+
for University Surgeons</a> (SUS) and held annually in February. Anecdotally,
|
76
|
+
it is a popular conference for students and residents to attend. The ASC maintains
|
77
|
+
a public archive of all abstracts dating from 2015-2020. We obtained a machine
|
78
|
+
readable version of this public database through the webmaster (this version
|
79
|
+
of the data spans 2016 to 2023).</p><p>For each abstract, we looked at the
|
80
|
+
year and primary institution at which the work was conducted. In order to
|
81
|
+
intuit the primary institution, we searched the institution block string for
|
82
|
+
the first presence of \"university\", \"hospital\", \"institute\", or \"medical
|
83
|
+
center\" or the first expression to occur before a comma. This method was
|
84
|
+
chosen as institutions’ names are written variably (Department of Surgery,
|
85
|
+
University Hospital, New York, NY vs. University Hospital, Division of Colorectal
|
86
|
+
Surgery, Department of Surgery, New York, NY). Unfortunately, our code is
|
87
|
+
unable to merge slight variations in the resultant institution name (University
|
88
|
+
of Michigan vs. University of Michigan Ann Arbor). </p><p>In order to do a
|
89
|
+
primary survey of institutional trends in this dataset, we conducted the following
|
90
|
+
analyses. First, we measured the number of abstracts accepted each year from
|
91
|
+
2016 to 2023. Second, we looked at the number of accepted abstracts by institution
|
92
|
+
over the entire study period. Then, we looked at the number of abstract institutions
|
93
|
+
by institution and year to study changes in institutional trends over time.
|
94
|
+
Finally, we did a subset analysis on post-COVID data (2021 to 2023) to look
|
95
|
+
at absolute and per cent year-over-year changes in accepted abstracts to see
|
96
|
+
which institutions were able to significantly increase their abstract performance
|
97
|
+
in one year. </p><h3 id=\"accepted-abstracts-are-increasing-but-down-from-peak\">Accepted
|
98
|
+
Abstracts are increasing but down from peak</h3><p>We plotted the total number
|
99
|
+
of abstracts accepted by year. The number of accepted abstracts increased
|
100
|
+
from 1125 in 2016 to an all-time high of 1742 in 2020 before declining to
|
101
|
+
922 and 848 in 2021 and 2022, respectively. Accepted abstracts have since
|
102
|
+
rebounded to 1469 in 2023, or roughly 84% of the maximum amount. Of note,
|
103
|
+
the 2021 and 2022 meetings were held virtually due to the COVID-19 pandemic.
|
104
|
+
Conversely the 2020 meeting was held immediately prior to the institution
|
105
|
+
of lockdowns and other social distancing policies.</p><figure class=\"kg-card
|
106
|
+
kg-image-card kg-width-wide\"><img src=\"https://www.ideasurg.pub/content/images/2023/06/newplot--1-.png\"
|
107
|
+
class=\"kg-image\" alt loading=\"lazy\" width=\"1400\" height=\"800\" srcset=\"https://www.ideasurg.pub/content/images/size/w600/2023/06/newplot--1-.png
|
108
|
+
600w, https://www.ideasurg.pub/content/images/size/w1000/2023/06/newplot--1-.png
|
109
|
+
1000w, https://www.ideasurg.pub/content/images/2023/06/newplot--1-.png 1400w\"
|
110
|
+
sizes=\"(min-width: 1200px) 1200px\"></figure><h3 id=\"alabama-michigan-lead-abstract-acceptances-during-study-period\">Alabama,
|
111
|
+
Michigan lead abstract acceptances during study period</h3><p>Next, we plotted
|
112
|
+
the total number of accepted abstracts by institution. The graph shows data
|
113
|
+
for the twenty leading institutions. The University of Alabama and the University
|
114
|
+
of Michigan lead in abstract acceptances during the study period (477 and
|
115
|
+
348, respectively). Given an eight year time-range, the top twenty institutions
|
116
|
+
reflect an average annual abstract acceptance ranging from roughly thirteen
|
117
|
+
to 60.</p><figure class=\"kg-card kg-image-card kg-width-wide\"><img src=\"https://www.ideasurg.pub/content/images/2023/06/newplot--2-.png\"
|
118
|
+
class=\"kg-image\" alt loading=\"lazy\" width=\"1400\" height=\"800\" srcset=\"https://www.ideasurg.pub/content/images/size/w600/2023/06/newplot--2-.png
|
119
|
+
600w, https://www.ideasurg.pub/content/images/size/w1000/2023/06/newplot--2-.png
|
120
|
+
1000w, https://www.ideasurg.pub/content/images/2023/06/newplot--2-.png 1400w\"
|
121
|
+
sizes=\"(min-width: 1200px) 1200px\"></figure><p>We also plotted the number
|
122
|
+
of accepted abstracts by year using a separate line plot for each individual.
|
123
|
+
While Michigan has maintained between 30 and 60 abstracts for each year, Alabama
|
124
|
+
went from 6 to 48 abstracts between 2016 and 2017 and has maintained greater
|
125
|
+
than 60 accepted abstracts each year. There is a notable dip in the number
|
126
|
+
of accepted abstracts from 2021 to 2022, consistent with a similar trend in
|
127
|
+
the total yearly acceptance data. </p><figure class=\"kg-card kg-image-card
|
128
|
+
kg-width-wide\"><img src=\"https://www.ideasurg.pub/content/images/2023/06/newplot--8-.png\"
|
129
|
+
class=\"kg-image\" alt loading=\"lazy\" width=\"1400\" height=\"800\" srcset=\"https://www.ideasurg.pub/content/images/size/w600/2023/06/newplot--8-.png
|
130
|
+
600w, https://www.ideasurg.pub/content/images/size/w1000/2023/06/newplot--8-.png
|
131
|
+
1000w, https://www.ideasurg.pub/content/images/2023/06/newplot--8-.png 1400w\"
|
132
|
+
sizes=\"(min-width: 1200px) 1200px\"></figure><p>Overall, there appears to
|
133
|
+
be a general clustering of the other eighteen institutions in the top twenty,
|
134
|
+
a trend seen in both the aggregate and the year-to-year data.</p><h3 id=\"mgh-brigham-lead-absolute-and-per-cent-increase-in-abstracts-in-2023\">MGH,
|
135
|
+
Brigham lead absolute and per cent increase in abstracts in 2023</h3><p>Next,
|
136
|
+
we measured the absolute and percent change between accepted abstracts in
|
137
|
+
consecutive years for the top twenty institutions. We restricted our analysis
|
138
|
+
to 2021, 2022, and 2023. The greatest absolute increases in accepted abstracts
|
139
|
+
came from Massachusetts General Hospital in 2023 (27), Brigham and Women''s
|
140
|
+
Hospital in 2023 (16), and UCLA in 2022 (16). The greatest percentage increases
|
141
|
+
in accepted abstracts came from Brigham and Women''s Hospital in 2023 (800%),
|
142
|
+
Johns Hopkins in 2023 (500%), and Massachusetts General Hospital in 2023 (386%).
|
143
|
+
Of note, Johns Hopkins and Brigham and Women''s Hospital also had the largest
|
144
|
+
absolute and percentage decrease in accepted abstracts in 2022. Interestingly,
|
145
|
+
University of Alabama (+4 in 2022, +3 in 2023) and University of Michigan
|
146
|
+
(+11 in 2023)  - which rank at the top in all time and yearly abstracts
|
147
|
+
- experienced less extreme swings during the 2021-2023 time period.</p><figure
|
148
|
+
class=\"kg-card kg-image-card kg-width-wide\"><img src=\"https://www.ideasurg.pub/content/images/2023/06/newplot--7-.png\"
|
149
|
+
class=\"kg-image\" alt loading=\"lazy\" width=\"1400\" height=\"800\" srcset=\"https://www.ideasurg.pub/content/images/size/w600/2023/06/newplot--7-.png
|
150
|
+
600w, https://www.ideasurg.pub/content/images/size/w1000/2023/06/newplot--7-.png
|
151
|
+
1000w, https://www.ideasurg.pub/content/images/2023/06/newplot--7-.png 1400w\"
|
152
|
+
sizes=\"(min-width: 1200px) 1200px\"></figure><figure class=\"kg-card kg-image-card
|
153
|
+
kg-width-wide\"><img src=\"https://www.ideasurg.pub/content/images/2023/06/newplot--4-.png\"
|
154
|
+
class=\"kg-image\" alt loading=\"lazy\" width=\"1400\" height=\"800\" srcset=\"https://www.ideasurg.pub/content/images/size/w600/2023/06/newplot--4-.png
|
155
|
+
600w, https://www.ideasurg.pub/content/images/size/w1000/2023/06/newplot--4-.png
|
156
|
+
1000w, https://www.ideasurg.pub/content/images/2023/06/newplot--4-.png 1400w\"
|
157
|
+
sizes=\"(min-width: 1200px) 1200px\"></figure><h3 id=\"conclusions\">Conclusions</h3><p>In
|
158
|
+
this data exploration, we analyzed abstract acceptance data for the Academic
|
159
|
+
Surgical Congress between 2016 and 2023. We showed that the number of abstracts
|
160
|
+
increased from 2016 to 2020, dipped in 2021 and 2022, and is recovering in
|
161
|
+
2023 - likely reflecting the variability forced by COVID19 and the transition
|
162
|
+
to virtual conferences in 2021 and 2022. We also showed that the University
|
163
|
+
of Alabama and the University of Michigan have significantly led accepted
|
164
|
+
abstracts throughout the study period with University of Alabama maintaining
|
165
|
+
a top position following an impressive 700 percent increase in abstracts between
|
166
|
+
2016 and 2017. In 2023, Massachusetts General Hospital and Brigham and Women''s
|
167
|
+
Hospital have led absolute and percent increases in abstract submissions,
|
168
|
+
though this may reflect some degree of reversion following drops in abstract
|
169
|
+
acceptances in 2022.</p><h3 id=\"limitations-and-future-directions\">Limitations
|
170
|
+
and Future Directions</h3><p>This data exploration has several limitations.
|
171
|
+
First, our study is limited to one conference and conferences themselves are
|
172
|
+
only a limited component of academic productivity. However, the Academic Surgical
|
173
|
+
Congress is an international meeting that is well regarded, popular among
|
174
|
+
trainees, and has consistent multi-year data. Another limitation of our study
|
175
|
+
is our assumption that the first institution listed in the author block is
|
176
|
+
the primary institution–a method which does not take into account multi-institutional
|
177
|
+
abstracts. However, we suspect this reflects the minority of the abstracts.
|
178
|
+
Finally, we have not fully optimized name-matching to correctly combine terms
|
179
|
+
like \"University of Michigan\" and \"University of Michigan Ann Arbor\".
|
180
|
+
However, given that most of the data currently is only for the top 20 institutions,
|
181
|
+
we believe the overall trends will be preserved.</p><p>In the future, we can
|
182
|
+
attempt to obtain more granular data on authors and institutions and optimize
|
183
|
+
the capture of this data for aggregated analysis. We are also researching
|
184
|
+
different techniques to perform string matching to fix the institution name
|
185
|
+
issue. We can improve the generalizability of our findings by bringing in
|
186
|
+
similar data from other large meetings – such as the American College
|
187
|
+
of Surgeons Clinical Congress and the Society of American Gastrointestinal
|
188
|
+
and Endoscopic Surgeons (SAGES). We can also use the PubMed API to perform
|
189
|
+
similar analyses in top surgical journals such as JAMA Surgery or the Annals
|
190
|
+
of Surgery.</p><p>With regards to the data we have obtained, we can conduct
|
191
|
+
survey-based studies or focus groups with key stakeholders from institutions
|
192
|
+
that have demonstrated strong abstract performance during the study period
|
193
|
+
as well as those who have shown significant improvement. By talking to department
|
194
|
+
chairs, program directors, and research and education leaders we can understand
|
195
|
+
what steps each institution took to improve abstract acceptance (e.g. hiring
|
196
|
+
a new research faculty, creating a mentorship program, providing administrative
|
197
|
+
support for IRBs/stats etc.). Following this, we can map individual interventions
|
198
|
+
to improvements to understand the contribution that each can have on increased
|
199
|
+
academic productivity.</p><p>We have also not yet mined the abstract body
|
200
|
+
for themes. Using natural language processing, we can understand how themes
|
201
|
+
and trends of emergent research change from year to year, and even develop
|
202
|
+
models to predict which topics will be of interest in future works. This will
|
203
|
+
likely be the subject of a future data exploration.</p><p>Overall, we hope
|
204
|
+
to demonstrate that abstract acceptance data from a single international meeting
|
205
|
+
can provide interesting, meaningful data on which programs have strong research
|
206
|
+
infrastructure and which programs are making strides to achieve it. By studying
|
207
|
+
this data and improving the inputs, we can better understand whose example
|
208
|
+
to follow and ultimately develop a playbook that all institutions can employ
|
209
|
+
to maximize the academic opportunities of students and trainees.</p><h3 id=\"see-the-data\">See
|
210
|
+
the Data</h3><p>You can see the raw data as well as all of our code here,
|
211
|
+
and use this for your own studies with appropriate attribution.</p><p><a href=\"https://deepnote.com/@tejas-sathe-a73f/ASC-Data-Exploration-948ca211-bfc7-459b-9d6d-ef952a5baf32?ref=ideasurg.pub\">https://deepnote.com/@tejas-sathe-a73f/ASC-Data-Exploration-948ca211-bfc7-459b-9d6d-ef952a5baf32</a></p>","tags":["Pre-Print"],"language":"en","references":[],"blog_id":"3cxcm20","blog":{"id":"3cxcm20","title":"I.D.E.A.S.","description":"Innovation
|
212
|
+
and Design Experiments in Academic Surgery (I.D.E.A.S.)","language":"en","favicon":"https://www.ideasurg.pub/favicon.png","feed_url":"https://www.ideasurg.pub/rss/","home_page_url":"https://www.ideasurg.pub/","user_id":"8498eaf6-8c58-4b58-bc15-27eda292b1aa","created_at":"2023-05-31T13:44:29+00:00","indexed_at":"2023-01-04","feed_format":"application/rss+xml","license":"https://creativecommons.org/licenses/by/4.0/legalcode","generator":"Ghost
|
213
|
+
5.51","category":"Medical and Health Sciences","prefix":"10.59350","modified_at":"2023-06-03T04:54:30+00:00","version":"https://jsonfeed.org/version/1.1","backlog":false}}'
|
214
|
+
recorded_at: Thu, 15 Jun 2023 05:34:55 GMT
|
215
|
+
recorded_with: VCR 6.1.0
|