Skip to content

Commit

Permalink
Oct 14, 2024: -p IUPAC and -c working
Browse files Browse the repository at this point in the history
  • Loading branch information
AldhairMedico committed Oct 14, 2024
1 parent 9a41b56 commit 694dfb6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 50 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ LDFLAGS = -pthread

GFALIBS_DIR := $(CURDIR)/gfalibs

OBJS := main teloscope input
OBJS := main teloscope input tools
BINS := $(addprefix $(BINDIR)/, $(OBJS))

head: $(BINS) gfalibs | $(BUILD)
Expand Down
9 changes: 0 additions & 9 deletions include/functions.h

This file was deleted.

2 changes: 1 addition & 1 deletion include/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
#include "input-gfa.h"

#include "input.h" // was in Mac's code
#include "functions.h"
#include "tools.h"

#endif /* MAIN_H */
36 changes: 0 additions & 36 deletions src/functions.cpp

This file was deleted.

5 changes: 2 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ int main(int argc, char **argv) {
printf("/// Teloscope v%s\n", version.c_str());

if (userInput.step > userInput.windowSize) {
fprintf(stderr, "Error: Step size (%d) larger than window size (%d) is not allowed.\n", userInput.step, userInput.windowSize);
fprintf(stderr, "Error: Step size (%d) cannot be larger than window size (%d)!\n", userInput.step, userInput.windowSize);
exit(EXIT_FAILURE);

} else if (userInput.step == userInput.windowSize) {
Expand Down Expand Up @@ -355,5 +355,4 @@ int main(int argc, char **argv) {

exit(EXIT_SUCCESS);

}

}

0 comments on commit 694dfb6

Please sign in to comment.