From a4607bf0e1e8fff6e6a7bfb62d4859471346221c Mon Sep 17 00:00:00 2001 From: LTLA Date: Tue, 8 Oct 2024 16:57:30 -0700 Subject: [PATCH] Minor fixes to the README. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index be1260f..c605ab9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Unit tests](https://github.com/singler-inc/singlepp_loaders/actions/workflows/run-tests.yaml/badge.svg) ![Documentation](https://github.com/singler-inc/singlepp_loaders/actions/workflows/doxygenate.yaml/badge.svg) -[![codecov](https://codecov.io/gh/singler-inc/singlepp_loaders/branch/master/graph/badge.svg?token=OYTGM9IRSE)](https://codecov.io/gh/singler-inc/singlepp_loaders) +[![codecov](https://codecov.io/gh/singler-inc/singlepp_loaders/branch/master/graph/badge.svg?token=Dv89atBILO)](https://codecov.io/gh/singler-inc/singlepp_loaders) ## Overview @@ -42,7 +42,7 @@ auto ranks = singlepp_loader::load_rankings_from_text_file( singlepp_loader::LoadMarkersOptions mopt; auto markers = singlepp_loader::load_markers_from_gzip_file( - "some_rankings.csv.gz", + "some_markers.csv.gz", mopt ); @@ -63,7 +63,7 @@ More details can be found in the [**singlepp** documentation](https://SingleR-in If you're using CMake, you just need to add something like this to your `CMakeLists.txt`: -``` +```cmake include(FetchContent) FetchContent_Declare( @@ -77,7 +77,7 @@ FetchContent_MakeAvailable(singlepp_loaders) Then you can link to **singlepp_loaders** to make the headers available during compilation: -``` +```cmake # For executables: target_link_libraries(myexe singlepp_loaders)