google / deepconsensus

DeepConsensus uses gap-aware sequence transformers to correct errors in Pacific Biosciences (PacBio) Circular Consensus Sequencing (CCS) data.
BSD 3-Clause "New" or "Revised" License
229 stars 36 forks source link

Change the wrong number of strand in the homepage image of pipeline_figure. #66

Open one-matrix opened 1 year ago

one-matrix commented 1 year ago

Change the wrong number of strand in the homepage image of pipeline_figure. '0 forward 1 reverse' to '1 forward 2 reverse'

google-cla[bot] commented 1 year ago

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

one-matrix commented 1 year ago

according to the correct definition ` class Strand(int, enum.Enum): UNKNOWN = 0 FORWARD = 1 # read.is_reverse == False REVERSE = 2 # read.is_reverse == True

`