We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d76a7e commit 72babfcCopy full SHA for 72babfc
1 file changed
spec/models/pacbio/well_spec.rb
@@ -711,6 +711,27 @@
711
expect(well.same_barcodes_on_both_ends_of_sequence).to be_nil
712
end
713
714
+
715
+ context 'when the well contains a tag from an asymmetric tag set' do
716
+ let(:oligo_reverse) { 'ACGTACGT' }
717
+ let(:tag) { create(:tag, oligo_reverse: oligo_reverse) }
718
+ let(:library) { create(:pacbio_library, tag: tag) }
719
+ let(:well) do
720
+ create(
721
+ :pacbio_well,
722
+ pre_extension_time: 2,
723
+ generate_hifi: 'In SMRT Link',
724
+ ccs_analysis_output: 'Yes',
725
+ row: 'A',
726
+ column: 1,
727
+ libraries: [library]
728
+ )
729
+ end
730
731
+ it 'returns false' do
732
+ expect(well.same_barcodes_on_both_ends_of_sequence).to be false
733
734
735
736
737
context 'position_leading_zero' do
0 commit comments