fix: add biotype vaultRNA_primary_transcript #323
conventional-prs.yml
on: pull_request_target
title-format
2s
Annotations
22 warnings
use of a fallible conversion when an infallible one could be used:
src/parser/ds.rs#L497
warning: use of a fallible conversion when an infallible one could be used
--> src/parser/ds.rs:497:18
|
497 | .try_into()
| ^^^^^^^^ help: use: `into`
|
= note: converting `RnaInterval` to `Range<i32>` cannot fail
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
|
use of a fallible conversion when an infallible one could be used:
src/parser/ds.rs#L490
warning: use of a fallible conversion when an infallible one could be used
--> src/parser/ds.rs:490:18
|
490 | .try_into()
| ^^^^^^^^ help: use: `into`
|
= note: converting `TxInterval` to `Range<i32>` cannot fail
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
= note: `#[warn(clippy::unnecessary_fallible_conversions)]` on by default
|
usage of a legacy numeric constant:
src/normalizer.rs#L849
warning: usage of a legacy numeric constant
--> src/normalizer.rs:849:17
|
849 | std::i32::MAX
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
849 | i32::MAX
|
|
usage of a legacy numeric constant:
src/normalizer.rs#L360
warning: usage of a legacy numeric constant
--> src/normalizer.rs:360:19
|
360 | Ok(0..std::i32::MAX)
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
360 | Ok(0..i32::MAX)
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/normalizer.rs#L306
warning: usage of a legacy numeric constant
--> src/normalizer.rs:306:26
|
306 | let _right = std::i32::MAX;
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
306 | let _right = i32::MAX;
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/normalizer.rs#L302
warning: usage of a legacy numeric constant
--> src/normalizer.rs:302:28
|
302 | exon_ends.push(std::i32::MAX);
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
302 | exon_ends.push(i32::MAX);
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L860
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:860:34
|
860 | exon_aln_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
860 | exon_aln_id: i32::MAX,
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L859
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:859:34
|
859 | alt_exon_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
859 | alt_exon_id: i32::MAX,
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L858
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:858:33
|
858 | tx_exon_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
858 | tx_exon_id: i32::MAX,
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L857
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:857:38
|
857 | alt_exon_set_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
857 | alt_exon_set_id: i32::MAX,
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L856
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:856:37
|
856 | tx_exon_set_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
= note: `#[warn(clippy::legacy_numeric_constants)]` on by default
help: use the associated constant instead
|
856 | tx_exon_set_id: i32::MAX,
| ~~~~~~~~
|
use of a fallible conversion when an infallible one could be used:
src/parser/ds.rs#L497
warning: use of a fallible conversion when an infallible one could be used
--> src/parser/ds.rs:497:18
|
497 | .try_into()
| ^^^^^^^^ help: use: `into`
|
= note: converting `RnaInterval` to `Range<i32>` cannot fail
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
|
use of a fallible conversion when an infallible one could be used:
src/parser/ds.rs#L490
warning: use of a fallible conversion when an infallible one could be used
--> src/parser/ds.rs:490:18
|
490 | .try_into()
| ^^^^^^^^ help: use: `into`
|
= note: converting `TxInterval` to `Range<i32>` cannot fail
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
= note: `#[warn(clippy::unnecessary_fallible_conversions)]` on by default
|
usage of a legacy numeric constant:
src/normalizer.rs#L849
warning: usage of a legacy numeric constant
--> src/normalizer.rs:849:17
|
849 | std::i32::MAX
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
849 | i32::MAX
|
|
usage of a legacy numeric constant:
src/normalizer.rs#L360
warning: usage of a legacy numeric constant
--> src/normalizer.rs:360:19
|
360 | Ok(0..std::i32::MAX)
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
360 | Ok(0..i32::MAX)
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/normalizer.rs#L306
warning: usage of a legacy numeric constant
--> src/normalizer.rs:306:26
|
306 | let _right = std::i32::MAX;
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
306 | let _right = i32::MAX;
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/normalizer.rs#L302
warning: usage of a legacy numeric constant
--> src/normalizer.rs:302:28
|
302 | exon_ends.push(std::i32::MAX);
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
302 | exon_ends.push(i32::MAX);
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L860
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:860:34
|
860 | exon_aln_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
860 | exon_aln_id: i32::MAX,
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L859
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:859:34
|
859 | alt_exon_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
859 | alt_exon_id: i32::MAX,
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L858
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:858:33
|
858 | tx_exon_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
858 | tx_exon_id: i32::MAX,
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L857
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:857:38
|
857 | alt_exon_set_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
857 | alt_exon_set_id: i32::MAX,
| ~~~~~~~~
|
usage of a legacy numeric constant:
src/data/cdot/json.rs#L856
warning: usage of a legacy numeric constant
--> src/data/cdot/json.rs:856:37
|
856 | tx_exon_set_id: std::i32::MAX,
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
= note: `#[warn(clippy::legacy_numeric_constants)]` on by default
help: use the associated constant instead
|
856 | tx_exon_set_id: i32::MAX,
| ~~~~~~~~
|