File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -168,19 +168,19 @@ eats_query(const std::uint32_t c) {
168168 then one needs this. Also, Qiang should be consulted on this
169169 because he spent much time thinking about it in the context of
170170 plants. */
171- [[nodiscard]] static bool
171+ [[nodiscard]] static inline bool
172172is_chh (const std::string &s, const std::size_t i) {
173173 return i + 2 < std::size (s) && is_cytosine (s[i]) && !is_guanine (s[i + 1 ]) &&
174174 !is_guanine (s[i + 2 ]);
175175}
176176
177- [[nodiscard]] static bool
177+ [[nodiscard]] static inline bool
178178is_ddg (const std::string &s, const std::size_t i) {
179179 return i + 2 < std::size (s) && !is_cytosine (s[i]) && !is_cytosine (s[i + 1 ]) &&
180180 is_guanine (s[i + 2 ]);
181181}
182182
183- [[nodiscard]] static bool
183+ [[nodiscard]] static inline bool
184184is_c_at_g (const std::string &s, const std::size_t i) {
185185 return i + 2 < std::size (s) && is_cytosine (s[i]) && !is_cytosine (s[i + 1 ]) &&
186186 !is_guanine (s[i + 1 ]) && is_guanine (s[i + 2 ]);
You can’t perform that action at this time.
0 commit comments