Skip to content

Commit

Permalink
Fix a typo conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
mourisl committed Apr 19, 2022
2 parents dcca63c + bc0c439 commit b26696f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AddGeneName.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ int main( int argc, char *argv[] )

if ( argc < 3 )
{
fprintf( stderr, "%s", usage ) ;
fprintf( stderr, "%s\n", usage ) ;
exit( 1 ) ;
}

Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
CXX = g++
CXXFLAGS= -Wall -O3 -g #-std=c++11 #-Wall #-g
CXXFLAGS= -Wall -O3 #-g #-std=c++11 #-Wall #-g
#CXXFLAGS= -Wall -g #-std=c++11 #-Wall #-g
LINKPATH= -I./samtools-0.1.19 -L./samtools-0.1.19
LINKFLAGS = -lbam -lz -lm -lpthread
DEBUG=
OBJECTS = stats.o subexon-graph.o

#asan=1
ifneq ($(asan),)
CXXFLAGS+=-fsanitize=address -g
LDFLAGS+=-fsanitize=address -ldl -g
LINKFLAGS+=-fsanitize=address -ldl -g
endif

all: subexon-info combine-subexons classes vote-transcripts junc grader trust-splice add-genename addXS
Expand Down
2 changes: 1 addition & 1 deletion TranscriptDecider.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class MultiThreadOutputTranscript
int j ;
for ( i = 0 ; i < sampleCnt ; ++i )
{
fprintf( outputFPs[i], "#PsiCLASS_v1.0.2\n#" ) ;
fprintf( outputFPs[i], "#PsiCLASS_v1.0.3\n#" ) ;
for ( j = 0 ; j < argc - 1 ; ++j )
{
fprintf( outputFPs[i], "%s ", argv[j] ) ;
Expand Down

0 comments on commit b26696f

Please sign in to comment.