├── .coveragerc ├── .github └── workflows │ └── CI.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── clfd ├── __init__.py ├── _version.py ├── apps │ ├── __init__.py │ ├── cleanup.py │ └── functions.py ├── archive_handler.py ├── features │ ├── __init__.py │ ├── functions.py │ └── register.py ├── profile_masking.py ├── report.py ├── report_plotting.py ├── serialization.py └── spike_finding.py ├── docker └── Dockerfile ├── docs └── report.png ├── example_data ├── npy_example.npy └── psrchive_example.ar ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── expected_profmask.txt ├── expected_tpmask.txt ├── test_cli_app.py ├── test_profile_masking.py ├── test_psrchive_processing.py ├── test_spike_finding_and_replacement.py └── utils.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/README.md -------------------------------------------------------------------------------- /clfd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/__init__.py -------------------------------------------------------------------------------- /clfd/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/_version.py -------------------------------------------------------------------------------- /clfd/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clfd/apps/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/apps/cleanup.py -------------------------------------------------------------------------------- /clfd/apps/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/apps/functions.py -------------------------------------------------------------------------------- /clfd/archive_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/archive_handler.py -------------------------------------------------------------------------------- /clfd/features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/features/__init__.py -------------------------------------------------------------------------------- /clfd/features/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/features/functions.py -------------------------------------------------------------------------------- /clfd/features/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/features/register.py -------------------------------------------------------------------------------- /clfd/profile_masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/profile_masking.py -------------------------------------------------------------------------------- /clfd/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/report.py -------------------------------------------------------------------------------- /clfd/report_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/report_plotting.py -------------------------------------------------------------------------------- /clfd/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/serialization.py -------------------------------------------------------------------------------- /clfd/spike_finding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/clfd/spike_finding.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/docs/report.png -------------------------------------------------------------------------------- /example_data/npy_example.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/example_data/npy_example.npy -------------------------------------------------------------------------------- /example_data/psrchive_example.ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/example_data/psrchive_example.ar -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/expected_profmask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/tests/expected_profmask.txt -------------------------------------------------------------------------------- /tests/expected_tpmask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/tests/expected_tpmask.txt -------------------------------------------------------------------------------- /tests/test_cli_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/tests/test_cli_app.py -------------------------------------------------------------------------------- /tests/test_profile_masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/tests/test_profile_masking.py -------------------------------------------------------------------------------- /tests/test_psrchive_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/tests/test_psrchive_processing.py -------------------------------------------------------------------------------- /tests/test_spike_finding_and_replacement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/tests/test_spike_finding_and_replacement.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-morello/clfd/HEAD/tests/utils.py --------------------------------------------------------------------------------