From d1162fc2724f7d9ea0630bfd6eb4d3436d6629a9 Mon Sep 17 00:00:00 2001 From: Samantha Emerson Date: Mon, 13 Sep 2021 13:57:15 -0400 Subject: [PATCH] Update README and associated files to prep for release 1.8.0 --- AUTHORS | 2 +- CHANGELOG | 12 ++++++++++++ LICENSE | 2 +- README.md | 11 +++++++++-- setup.py | 2 +- 5 files changed, 24 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index fb695c7..6404b25 100644 --- a/AUTHORS +++ b/AUTHORS @@ -25,6 +25,7 @@ Contributors at the University of Florida * Naomi Braun * Philip Chase * Samantha Emerson + * Melissa Moreno * Kevin S. Hanson * Matthew McConnell * Ajantha Ramineni @@ -35,4 +36,3 @@ Contributors at the University of Florida Other Contributors * L. D. Nicolas May - diff --git a/CHANGELOG b/CHANGELOG index a7a5783..05e2c19 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,17 @@ Changelog ========= +## [1.8.0] - 2021-09-13 +### Summary + +### Updated + * Add Z1X processing to LBD short version + * Update UDS Z1X to include handling for optional LBD short version fields + * Make C2T optional for telephone follow-ups to reflect NACC's DED + +### Added + * Add new CV covid module + + ## [1.7.1] - 2021-02-03 ### Summary This release updates the telephone follow-up packet (TFP) module to include diff --git a/LICENSE b/LICENSE index dbf3414..59e1bac 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2016–2020, University of Florida. +Copyright (c) 2016–2021, University of Florida. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index 6080f7a..23b97ab 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,15 @@ NACCulator [![DOI](https://zenodo.org/badge/20501/ctsit/nacculator.svg)](https://zenodo.org/badge/latestdoi/20501/ctsit/nacculator) -Converts a CSV data file exported from REDCap into the NACC's UDS3 fixed-width -format. +NACCulator is a Python 3-based data converter that changes REDCap .csv exported +data to NACC’s fixed-width .txt format. It is configured for UDS3 forms, +including FTLD and LBD (versions 3.0 and 3.1). It will perform basic data +integrity checks during a run: verifying that each field is the correct type +and length, verifying that there are no illegal characters in the Char fields, +verifying that Num fields are within the acceptable range as defined in NACC's +Data Element Dictionary for each form, and checking that no blanking rules have +been violated. NACCulator outputs a .txt file that is immediately ready to +submit to NACC's database. _Note:_ NACCulator _**requires Python 3.**_ diff --git a/setup.py b/setup.py index 9c8a1e4..dbfff76 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import setup, find_packages -VERSION = "1.7.1" +VERSION = "1.8.0" setup( name="nacculator",