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
**Beta Version**: v1.3.7. This pipeline is currently in Beta testing, and issues could appear during submission. Please use it at your own risk. Feedback and suggestions are welcome!
29
+
**Beta Version**: v1.3.8. This pipeline is currently in Beta testing, and issues could appear during submission. Please use it at your own risk. Feedback and suggestions are welcome!
30
30
31
31
**General Disclaimer**: This repository was created for use by CDC programs to collaborate on public health related projects in support of the [CDC mission](https://www.cdc.gov/about/organization/mission.htm). GitHub is not hosted by the CDC, but is a third party website used by CDC and its partners to share information and collaborate on software. CDC use of GitHub does not imply an endorsement of any one particular service, product, or enterprise.
# If semi-colon in authors string, that is default delim
145
+
if";"inmetadata["authors"].unique()[0]:
146
+
author_delim=";"
147
+
# If no semi-colon in authors string, attempt comma
148
+
elif","inmetadata["authors"].unique()[0]:
149
+
author_delim=","
150
+
print("Warning: Metadata 'authors' field is not using a semi-colon ';' to separate individual names. Comma was detected instead and is being used to separate individual names. If this causes issues, separate each name with a semi-colon instead.", file=sys.stderr)
Copy file name to clipboardExpand all lines: shiny/app.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
header= (
21
21
ui.card_header(
22
22
ui.HTML(
23
-
"""<p><strong>Beta Version</strong>: 1.3.7. This pipeline is currently in Beta testing, and issues could appear during submission. Please use it at your own risk. Feedback and suggestions are welcome!</p>"""
23
+
"""<p><strong>Beta Version</strong>: 1.3.8. This pipeline is currently in Beta testing, and issues could appear during submission. Please use it at your own risk. Feedback and suggestions are welcome!</p>"""
0 commit comments