Any views expressed within media held on this service are those of the contributors, should not be taken as approved or endorsed by the University, and do not necessarily reflect the views of the University in respect of any particular issue.

Magnus Hagdorn

Magnus Hagdorn

Research Software Engineer

Publishing Scientific Software

So you are writing scientific software and are wondering how to tell the world about it. In this blog post I briefly list the things you can do to make your software more visible.

  1. Use version control to manage your code. These days that is probably git. Depending on complexity of your project, version control allows you to track your changes, collaborate with others and manage multiple versions of your code.
  2. Use a public repository for your code so that others can find and contribute to it. There are many web platforms out there that support git. Most notably there is github and gitlab. github has the advantage that many people are using it and that it interoperates with other services that you might want to use. There is also bitbucket which is similar to github. gitlab, on the other hand, allows you to run your own private repository where you or your organisation has full control over the data. The University of Edinburgh runs their own gitlab instance which you can use for projects that need to stay within the organisation.
  3. Now that you are making your work public you need to consider how to license it. There are many different licences to choose from ranging from very permissive (do what you want) to very restrictive. You also need to consider intellectual property issues. The Software Sustainability Institute has a good page on choosing an open source license. If you think there might be commercial interest in your software you should check with your employer – in our case that is Edinburgh Innovations.
  4. Now that your code is publicly available people need to understand how it works. So you need to document it. There are two aspects of documentation: API documentation and general overview. At the very least you need to add a README. You can format it using markdown which will get displayed as HTML on github. The API documentation should be part of the source code. This way it is easier to keep the documentation in sync with the code. There are various options for API documentation which depend on the programming language you are using. Sphinx is a good choice for python projects. C, C++ or Fortran code can be documented using doxygen.
  5. The next piece in the puzzle is publishing your documentation. You can use the readthedocs web service to host your documentation. readthedocs is designed to work with sphinx documentation. The breathe package allows you to integrate doxygen with sphinx. readthedocs can also be integrated with github so that when you push changes to your repository the documentation gets automatically updated.
  6. In order to make sure that your code is working you need to test it. There are different approaches to testing: unit testing which tests particular aspects of your software and integration testing which tests the software as a whole. There are frameworks which allow you to perform these tests automatically. I would suggest to use pytest for python projects. These tests can be automatically run on pushing code to your github repository using continuous integration github actions. This also works for other languages.
  7. When you collaborate with others on writing code it is important to agree on style (number of spaces, where braces go, etc) otherwise you end up with a lot of noise in your revision history. You can use linters to help you with this task. These will also detect some programming errors. I would recommend to use flake8 for python projects. Again this is something that can and should be run automatically.
  8. Your code is now available, documented and tested and people are starting to use it. You would like to get some credit for it. First of all you need an orcid ID, a digital identifier that can be associated with your work.
  9. You have created a release of your code and would like to cite it in a paper. For this you need to have a digital object identifier, or doi. You can use the zenodo web service to automatically create a doi from a github release of your code.
  10. Once you have a doi of your code you can also add a citation file to your repository. These are displayed by github and allow others to properly cite your software.
  11. Articles in journals are still the main currency in university life. There are a number of journals where you can publish a paper specifically on your software, eg the Journal of Open Research Software or the Journal of Open Source Software. The Software Sustainability Institute has a list of journals where you can publish articles on software.

Leave a reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

This site uses Akismet to reduce spam. Learn how your comment data is processed.

css.php

Report this page

To report inappropriate content on this page, please use the form below. Upon receiving your report, we will be in touch as per the Take Down Policy of the service.

Please note that personal data collected through this form is used and stored for the purposes of processing this report and communication with you.

If you are unable to report a concern about content via this form please contact the Service Owner.

Please enter an email address you wish to be contacted on. Please describe the unacceptable content in sufficient detail to allow us to locate it, and why you consider it to be unacceptable.
By submitting this report, you accept that it is accurate and that fraudulent or nuisance complaints may result in action by the University.

  Cancel