Skip to content

Commit

Permalink
Merge pull request #18 from rffrancon/master
Browse files Browse the repository at this point in the history
fix: use of inline keyword is different beyond gnu11; removed inline …
  • Loading branch information
iqbal-lab authored Feb 22, 2018
2 parents 0fb3189 + d0ccd4a commit 59658af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/cortex_var/core/error_correction.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void error_correct_list_of_files(StrBuf* list_fastq,char quality_cutoff, char as
boolean add_greedy_bases_for_better_bwt_compression,
int num_greedy_bases, boolean rev_comp_read_if_on_reverse_strand);

inline void error_correct_file_against_graph(char* fastq_file, char quality_cutoff, char ascii_qual_offset,
void error_correct_file_against_graph(char* fastq_file, char quality_cutoff, char ascii_qual_offset,
dBGraph *db_graph, char* outfile,
uint64_t *bases_modified_count_array,//distribution across reads; how many of the read_length bases are fixed
uint64_t *posn_modified_count_array,//where in the read are we making corrections?
Expand Down
2 changes: 1 addition & 1 deletion src/cortex_var/core/error_correction.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void error_correct_list_of_files(StrBuf* list_fastq,char quality_cutoff, char as
}

//outputs fastQ unless add_greedy_bases_for_better_bwt_compression==true, in which case is for 1000genomes, and they want fastA
inline void error_correct_file_against_graph(char* fastq_file, char quality_cutoff, char ascii_qual_offset,
void error_correct_file_against_graph(char* fastq_file, char quality_cutoff, char ascii_qual_offset,
dBGraph *db_graph, char* outfile,
uint64_t *bases_modified_count_array,//distribution across reads; how many of the read_length bases are fixed
uint64_t *posn_modified_count_array,//where in the read are we making corrections?
Expand Down

0 comments on commit 59658af

Please sign in to comment.