Skip to content

Commit

Permalink
fixed truseq naming convention, added libseq print
Browse files Browse the repository at this point in the history
  • Loading branch information
sbooeshaghi committed Mar 8, 2024
1 parent 0371352 commit c22574c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/assays/illumina_truseq_dual.spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ modalities:
- rna
lib_struct: null
library_protocol: 10xv3 RNA 3'
library_kit: Illumina Truseq Dual Index
library_kit: Illumina TruSeq Dual Index
sequence_protocol: Illumina NovaSeq 6000
sequence_kit: NovaSeq 6000 v1.5
sequence_spec:
Expand Down
22 changes: 11 additions & 11 deletions seqspec/seqspec_print.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,17 @@ def libseq(spec, modality):

n.append(f"{ws}<{arrow}|({idx}) {read_id}")

s = "\n".join(
[
modality,
"---",
"\n".join(p),
libspec.sequence,
complement_sequence(libspec.sequence),
"\n".join(n),
]
)
return s
s = "\n".join(
[
modality,
"---",
"\n".join(p),
libspec.sequence,
complement_sequence(libspec.sequence),
"\n".join(n),
]
)
return s


def run_print(data):
Expand Down

0 comments on commit c22574c

Please sign in to comment.